Commit 24bb38e9 by BellCodeEditor

save project

parent 18891748
Showing with 16 additions and 0 deletions
import random
b=""
key = "使用杀马特实现位移替换加密,真是太nt了!"
message = input("请输入需要杀马特或者nt的内容吧:")
for i in message:
str1=i
str2=random.choice(key)
str3=random.choice(key)
a=str1+str2+str3
b=b+a
c="我是梁志超他奶奶,大傻*。"
b=list(b)
b.insert(random.randint(0,len(key)),c)
b="".join(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