Commit b850bdef by BellCodeEditor

save project

parent 18891748
Showing with 18 additions and 0 deletions
import random
w=input("加密语句")
k="dfgysffykusfusdykudgghsdfhfshf"
m=w
key=""
ke="fafuy.,.,-383=+%!fv都是(^07不是%&$s三:?>,.点*%)%定位av!&$hgh计划*…"
for i in m:
s1=i
s2=random.choice(k)
s3=random.choice(k)
t=s1+s2+s3
key=key+t
q=list(key)
imdex = random.randint(0,len(key))
q.insert(imdex,ke)
r="".join(q)
print(r)
\ 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