Commit a7899adc by BellCodeEditor

save project

parent d223b699
Showing with 25 additions and 0 deletions
import random
# 私钥
key = "有啊傻逼傻逼失败鼠标顺便三百 "
# 要加密语句
message = "都是什么目的你什么地方是反对非法手段地方豆腐干的风格!"
b=""
# 请使用私钥key,对message进行加密
p="!@#$%^&*123456789"
for i in message:
str=i
str1=random.choice(key)
str2=random.choice(key)
a=str+str1+str2
b = b +a
print(b)
s=list(b)
s.insert(5,p)
d="".join(s)
print(d)
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