Commit c183060e by BellCodeEditor

auto save

parent 626c4ae4
Pipeline #10655 failed in 0 seconds
Showing with 8 additions and 2 deletions
...@@ -2,9 +2,15 @@ import random ...@@ -2,9 +2,15 @@ import random
key='信息加密泰9821urcn09821ue0iew9ru2qricp02ro2qi0-r酷拉!' key='信息加密泰9821urcn09821ue0iew9ru2qricp02ro2qi0-r酷拉!'
message='密码=123456' message='密码=123456'
text1 = ""
for i in message: for i in message:
str1=i str1=i
str2=random.choice(key) str2=random.choice(key)
str3=random.choice(key) str3=random.choice(key)
text=str1+str2+str3 text=str1+str2+str3
print(text) text1 += text
\ No newline at end of file wtext=list(text1)
str5 = input("请输入:")
wtext.insert(random.randint(0,len(text1),str5)
test2 = "".join(wtext)
print(test2)
\ 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