Commit 3f75fd88 by BellCodeEditor

auto save

parent aaa63a7c
Showing with 7 additions and 1 deletions
...@@ -5,6 +5,8 @@ key = "abcdefgh使用编程实现位移替换#%¥加密,制作@#%密码乱3 ...@@ -5,6 +5,8 @@ key = "abcdefgh使用编程实现位移替换#%¥加密,制作@#%密码乱3
# 要加密语句 # 要加密语句
message="诺依,周末一起去看动漫展吧!" message="诺依,周末一起去看动漫展吧!"
ganrao="k:l?h&*%@4"
finallies="" finallies=""
for i in message: for i in message:
str1=i str1=i
...@@ -14,6 +16,10 @@ for i in message: ...@@ -14,6 +16,10 @@ for i in message:
#finallies = finallies + text #finallies = finallies + text
finallies+=text finallies+=text
print(finallies) list_finallies=list(finallies)
list_finallies.insert(5,ganrao)
result="".join(list_finallies)
print(result)
# 请使用私钥key,对message进行加密 # 请使用私钥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