Commit 16c70f8d by BellCodeEditor

save project

parent 0b9750b6
Showing with 5 additions and 2 deletions
...@@ -8,7 +8,9 @@ for i in message: ...@@ -8,7 +8,9 @@ for i in message:
str3 = random.choice(key) str3 = random.choice(key)
text = str1 + str2 + str3 text = str1 + str2 + str3
final_text = final_text + text final_text = final_text + text
list(final_text) index = random.randint(0,len(final_text))
key2 = "!@#$%^&*()" key2 = "!@#$%^&*()"
random.randint() final_li_text = list(final_text)
final_li_text.insert(index,key2)
data = "".join(final_li_text)
print(final_text) print(final_text)
\ No newline at end of file
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