Commit 804d44e6 by BellCodeEditor

auto save

parent da62ee62
Showing with 10 additions and 14 deletions
...@@ -2,22 +2,18 @@ import random ...@@ -2,22 +2,18 @@ import random
key="bhlkdfhglkdfhblzdiufghlshiguthgiludfghoer89gjreiorjger9tg" key="bhlkdfhglkdfhblzdiufghlshiguthgiludfghoer89gjreiorjger9tg"
message=input("请输入") message=input("请输入")
key_message="" key_message=""
noise="压新的雷啊,看我隐私"
for i in message: for i in message:
str1=i a=i
str2=random.choice(key) b=random.choice(key)
str3=random.choice(key) c=random.choice(key)
text=str1+str2+str3 text=a+b+c
key_message=key_message+text key_message=key_message+text
print(key_message) list_message=list(key_message)
index=random.randint(0,len(list_message))
list_message.insert(index,noise)
resalt_message="".join(list_message)
print(resalt_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