Commit 384dda6f by BellCodeEditor

save project

parent 9deaa539
Showing with 5 additions and 1 deletions
import random import random
message = "诺依,周末一起去看动漫展吧!" message = "诺依,周末一起去看动漫展吧!"
key = "ujufhfufuhfydf" key = "ujufhfufuhfydf"
key2="hhhf@#$$$%^^&&*&"
fd = "" fd = ""
for i in range(len(message)): for i in range(len(message)):
str1 = random.choice(key) str1 = random.choice(key)
str2 = random.choice(key) str2 = random.choice(key)
text = message[i] + str1 + str2 text = message[i] + str1 + str2
fd = fd + text fd = fd + text
print(fd) fd = list(fd)
fd.insert(5,key2)
fd = "".join(fd)
print(fd)
......
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