Commit 22d612b8 by BellCodeEditor

save project

parent e3160ea5
Showing with 15 additions and 0 deletions
import random
m= input("今天你要加密的内容是什么")
s="1234567654313456789654321·23865421109876542345678965345678987654345686567656"
k="##$%**"
j=""
for i in m:
str1=i
str2=random.choice(s)
str3=random.choice(s)
r=str1+str2+str3
j=j+r
z=list(j)
z.insert(random.randint(0,len(z)),k)
w="".join(z)
print(w)
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