Commit 3a2c54f0 by BellCodeEditor

save project

parent 8ceda9d5
Showing with 3 additions and 9 deletions
......@@ -3,16 +3,10 @@ import random
# 私钥
key = "sbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsb!"
# 要加密语句
message = "诺依,周末一起去看动漫展吧!"
s3=""
for i in message:
s=i
s1=random.choice(key)
s2=s+s1
s3=s3+s2
print(s3)
message = ['诺', '依', ',', '周', '末', '一', '起', '去', '看', '动', '漫', '展', '吧', '!']
a="".join(message)
print(a)
# 请使用私钥key,对message进行加密
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