Commit 48bd8f94 by BellCodeEditor

save project

parent e3160ea5
Showing with 16 additions and 0 deletions
import random
a="啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊"
b="阿萨德法规和健康"
a_b=""
noise = "sssssssssssssssss"
for i in b:
c1=i
c2=random.choice(a)
c3=random.choice(a)
text=c1+c2+c3
a_b=a_b+text
list_b = list(a_b)
index = random.randint(0, len(a_b))
list_b.insert(index, noise)
result_b = "".join(list_b)
print(result_b)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment