Commit 77b22f04 by BellCodeEditor

auto save

parent c7a3df1c
Showing with 3 additions and 18 deletions
import random
noise="jgfjhjghgjdfhgjhojgfjjhoiudjfoidiufojjgijgdhdkjjudoigugfi"
# 私钥
key = "123456789"
# 要加密语句
message = input("请输入要加密的话")
text=""
# 请使用私钥key,对message进行加密
for i in message:
sty1=i
sty2=random.choice(key)
sty3=random.choice(key)
text=text+sty1+sty2+sty3
text=list(text)
text.insert(random.randint(0,10),noise)
text="".join(text)
print(text)
\ No newline at end of file
bro1=["刘备",161,9.1]
bro2=["关羽",160,8.9]
bro3=["张飞",162,8.0]
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