Commit c335447f by BellCodeEditor

save project

parent 3a0d4af2
Showing with 8 additions and 1 deletions
...@@ -12,5 +12,12 @@ for i in message: ...@@ -12,5 +12,12 @@ for i in message:
str2=random.choice(key) str2=random.choice(key)
text=str+str1+str2 text=str+str1+str2
key_mes=key_mes+text key_mes=key_mes+text
print(key_mes)
list_mes = list(key_mes)
index= random.randint(0,len(key_mes))
list_mes.insert(index,noise)
result_mes = " ".join(list_mes)
print(result_mes)
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