Commit 5d040619 by BellCodeEditor

save project

parent 5f7403c7
Showing with 19 additions and 0 deletions
...@@ -12,3 +12,21 @@ for i in range(len(message)): ...@@ -12,3 +12,21 @@ for i in range(len(message)):
a = "MC" a = "MC"
for i in range(len(a)): for i in range(len(a)):
print(a[i]) print(a[i])
import random
key = "信息加密好酷啊!"
str = random.choice(key)
print(str)
import random
message = "诺依,周末一起去看动漫展吧!"
key="\kill"
y=""
for i in message:
x=i
a=random.choice(key)
b=random.choice(key)
l=x+a+b
y=y+l
print(l)
\ 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