Commit e951dc19 by BellCodeEditor

auto save

parent 52702649
Showing with 26 additions and 0 deletions
import random
key="afbi啊u丢啊是丢Audioh覅哈佛i番茄切块去哦我看"
str=random.choice(key)
str3=""
message=input("请输入你想加密的文字:")
key_message=""
list1=[]
for i in message:
str1=i
list1=[]
for o in range(random.randint(0,9)):
str2=random.choice(key)
list1.append(str2)
str3="".join(list1)
text=str1+str3
key_message=key_message+text
a=list(key_message)
a.insert(random.randint(0,len(key_message)),"port:@#$%^&*")
b="".join(a)
print(b)
dict_hero={"赵一":1,"李二":3,"张三":4}
print(dict_hero["赵一"])
dict_hero["李二"]=40
print(dict_hero["李二"])
dict_her
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