Commit 095db38c by BellCodeEditor

save project

parent e3160ea5
Showing with 41 additions and 0 deletions
import random
while True:
q = random.randint(0,5)
w=int(input("shuru"))
if q>w:
print("dl")
elif q<w:
print("xl")
else:
print("hl")
import random
q=""
# 私钥
key = "abcdefgh使用编程实现位移替换加密,制作密码机关真是太好玩了哈哈!"
# 要加密语句
message = input("输入")
a="xkrdtlkcgbj,mrtgbkd werl. f mnjklg,fbdadadaaaaaasbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbnvnbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"
# 请使用私钥key,对message进行加密
for i in message:
strs1=i
strs2=random.choice(key)
strs3=random.choice(key)
text=strs1+strs2+strs3
q=text+q
print(q)
w=list(q)
w.insert(random.randint(0,len(w)),a)
print(w)
r="".join(w)
print(r)
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