Commit 546ed0a9 by BellCodeEditor

save project

parent d77d847d
Showing with 7 additions and 2 deletions
......@@ -11,5 +11,10 @@ for i in range(len(message)):
str2 = random.choice(key)
str3 = random.choice(key)
key_message += str1 + str2 + str3
print(key_message)
print(key_message)
\ No newline at end of file
lb = list(key_message)
for i in range(5):
lb.insert(random.randint(0,len(key_message)),random.choice(key))
kk = "".join(lb)
print(kk)
\ 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