Commit 94adf2c3 by BellCodeEditor

save project

parent f757aee8
Showing with 2 additions and 1 deletions
...@@ -14,7 +14,8 @@ for i in message: ...@@ -14,7 +14,8 @@ for i in message:
text=text+str1+str2+str3 text=text+str1+str2+str3
noise="ydddxmck" noise="ydddxmck"
tast=list(text) tast=list(text)
tast.insert(6,noise) num = random.randint( 0,len(tast) )
tast.insert(num,noise)
tast = "".join(tast) tast = "".join(tast)
print(tast) print(tast)
......
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