Commit b1410108 by BellCodeEditor

auto save

parent d223b699
Showing with 16 additions and 0 deletions
import random
# 私钥
key = "啧啧啧啧啧啧电脑大家还记得黄金道士!"
# 要加密语句
message = "ha,你是脑残!"
new=""
# 请使用私钥key,对message进行加密
for i in message:
a=i
b=random.choice(key)
c=random.choice(key)
d=a+b+c
new=new+d
print(new)
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