Commit 68c62821 by BellCodeEditor

save project

parent 5d796ab7
Showing with 5 additions and 3 deletions
import random import random
b=""
key = "abeh使用杀马特实现位移替换加密,真是太nt了!" key = "abeh使用杀马特实现位移替换加密,真是太nt了!"
message = "马,去看漫展吧!cos太馋了呜呜呜呜" message = input("请输入需要nt的内容吧!保证乱到加密者都看不懂:")
for i in message: for i in message:
str1=i str1=i
str2=random.choice(key) str2=random.choice(key)
...@@ -9,6 +10,6 @@ for i in message: ...@@ -9,6 +10,6 @@ for i in message:
b=b+a b=b+a
c="我是梁志超他奶奶,大傻*。" c="我是梁志超他奶奶,大傻*。"
b=list(b) b=list(b)
b.insert(4,c) b.insert(random.randint(0,len(key)),c)
b="",join(b) b="".join(b)
print(b) print(b)
\ 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