Commit 82231e15 by BellCodeEditor

auto save

parent 4ef012aa
Showing with 23 additions and 2 deletions
import random
key = "信息加密好酷啊!"
str = random.choice(key)
print(str)
\ No newline at end of file
......@@ -12,9 +12,9 @@ for i in message:
str3=random.choice(key)
text=str1+str2+str3
key_message=key_message+text
print(key_message)
#print(key_message)
list1=list(key_message)
a="ports7346564"
list1.insert(0,a)
list1.insert(7,a)
key_message1="".join(list1)
print(key_message1)
\ No newline at end of file
import random
key = "ue师傅额低调v做人品反锁耳机客户ertyuidfs"
message = "诺依,周末一起去看动漫展!"
new=''
for i in message:
str1 = i
str2 = random.choice(key)
str3 = random.choice(key)
text = str1+str2+str3
new = new+text
a="segfhjkl"
list = list(new)
list.insert(6,a)
new1="".join(list)
print(new1)
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