Commit b24e879c by BellCodeEditor

save project

parent 79cb8101
Showing with 10 additions and 1 deletions
...@@ -2,6 +2,7 @@ import random ...@@ -2,6 +2,7 @@ import random
# 私钥 # 私钥
key = "abcdefgh使用编程实现位移替换加密,制作密码机关真是太好玩了哈哈!" key = "abcdefgh使用编程实现位移替换加密,制作密码机关真是太好玩了哈哈!"
key2='5679dfgyu'
# 要加密语句 # 要加密语句
message = "诺依,周末一起去看动漫展吧!" message = "诺依,周末一起去看动漫展吧!"
text='' text=''
...@@ -11,4 +12,7 @@ for i in message: ...@@ -11,4 +12,7 @@ for i in message:
str2=random.choice(key) str2=random.choice(key)
str3=random.choice(key) str3=random.choice(key)
str4=str1+str2+str3 str4=str1+str2+str3
print(text) text=text+str4
text=list(text)
text.insert(0,key2)
print(text)
\ No newline at end of file
text="周末一起去欢乐谷b"
li_text=list(text)
print(li_text)
\ 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