Commit 8c9db921 by BellCodeEditor

auto save

parent e3160ea5
Showing with 14 additions and 0 deletions
import random
message = "ojadsfkl90uoi134jklnsdf"
luan_ma = "iuhakjdsbng"
text = input("请输入您需要加密的文字:")
new_text = ""
for item in text:
new_text += item
new_text += random.choice(message)
new_text += random.choice(message)
new_text = list(new_text)
new_text.insert(random.randint(0,len(new_text)),luan_ma)
new_text = "".join(new_text)
print(new_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