Commit 3db7924c by BellCodeEditor

save project

parent d768d3a0
Showing with 23 additions and 0 deletions
message=input("你要加密什么秘语?")
key="觉得我不吃"
import random
str5=""
for i in message:
str1=i
str2=random.choice(key)
str3=random.choice(key)
str4=str1+str2+str3
str5=str5+str4 #i=i+1
print(str5)
noise="njo jndovubow#$%@6&%$33#@@@¥¥4"
list1=list(str5)
index=random.randint(0,len(list1))
list1.insert(index,noise)
str6="".join(list1)
print(str6)
import random
a=random.randint(1,9)
print(a)
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