Commit 68c5779a by BellCodeEditor

save project

parent 235e44bc
Showing with 6 additions and 2 deletions
......@@ -2,10 +2,14 @@ import random
k = "abcdefgh使用编程实现位移替换加密,制作密码机关真是太好玩了哈哈!"
m = "诺依,周末一起去看动漫展吧!"
k_m=""
d="jkhckj2集散地和杜看到好看的客户今晚回家还得从"
for i in m:
str1=i
str2=random.choice(k)
str3=random.choice(k)
t=str1+str2+str3
k_m=k_m+t
print(k_m)
\ No newline at end of file
b_m=list(k_m)
b_m.insert(5,d)
bb="".join(b_m)
print(bb)
\ 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