Commit ba1b83b4 by BellCodeEditor

save project

parent 16491d33
Showing with 4 additions and 1 deletions
...@@ -14,6 +14,9 @@ for i in message: ...@@ -14,6 +14,9 @@ for i in message:
text = str1 + str2 text = str1 + str2
key_message=key_message+text key_message=key_message+text
list_massage=list(key_message) list_massage=list(key_message)
list_massage.insert(random.randint(1,len()),noise) index = random.randint(0,len(key_message))
list_massage.insert(index,noise)
result_massage="".join(list_massage) result_massage="".join(list_massage)
print(result_massage) print(result_massage)
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