Commit 581fc752 by BellCodeEditor

auto save

parent 7c07af81
Showing with 34 additions and 0 deletions
message=input("你要加密什么密语?")
key="!@#$%^&*(*&^%$#@#$%)(*&^%$#)"
import random
str5=""
for i in message:
str1=i
str2=random.choice(key)
str3=random.choice(key)
str4=str1+str2+str3
str5=str5+str4
print(str5)
noise="!@#$%%$%^*&~~"
list1=list(str5)
index=random.randint(0,len(list1))
list1.insert(index,noise)
str6="".join(list1)
print(str6)
message="今天真是个好日子"
key="12q34567893456789fgyuiosasdfyu"
inport random
for i in message:
strt1=i
strt2=random.choice(key)
strt3=random.choice(key)
strt4=strt1+strt2+strt3
print(strt4)
\ No newline at end of file
import random
a=random.randint(1,9)
print(a)
class
\ No newline at end of file
++ "b/\347\254\254\344\270\200\343\200\202"
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