Commit c19ec5ce by BellCodeEditor

save project

parent 18891748
Showing with 12 additions and 0 deletions
import random
bb=input("请输入乱码:")
# 私钥
# 要加密语句
message = input("请输入加密语句:")
# 请使用私钥key,对message进行加密
hb=list(message)
po=random.randint(1,len(hb))
hb.insert(po,bb)
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