Commit 20822b12 by BellCodeEditor

auto save

parent 54bf3842
Showing with 7 additions and 4 deletions
import random import random
bb=["周欲超大醒瘪"] bb="周裕超大醒瘪"
# 私钥 # 私钥
# 要加密语句 # 要加密语句
message = "诺依,周末一起去看动漫展吧!" message = "诺依,周末一起去看动漫展吧!"
# 请使用私钥key,对message进行加密 # 请使用私钥key,对message进行加密
hb=list(message) hb=list(message)
hh=hb.insert(2,bb) gg=random.randint(1,len(hb))
print(hh) hb.insert(gg,bb)
\ No newline at end of file print(hb)
wb=''.join(hb)
print(wb)
\ 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