Commit eac842b9 by BellCodeEditor

save project

parent 18891748
Showing with 17 additions and 0 deletions
import random
bb=0
message = input("加密内容")
kjh="hjihhgyfytfghvfhfrtftrgf"
for i in message:
t1=i
t2=random.choice(kjh)
t3=random.choice(kjh)
aaa=t1+t2+t3
bb=str(bb)+aaa
ccc=list(bb)
ddd="!@#@#!@$%&*%"
ccc.insert(random.randint(0,len(ccc)),ddd)
aaa="".join(ccc)
print(aaa)
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