Commit 62c92e2f by BellCodeEditor

save project

parent 4c9a045f
Pipeline #12218 failed in 0 seconds
Showing with 11 additions and 7 deletions
import random
Key = "abcdefgh"
message = "动漫展" message = "动漫展"
length =len(message) Key_message=""
i = 0 for i in message:
while i < length: str1 = i
elementm = message[i] str2 = random.choice(Key)
print( elementm ) str3 = random.choice(Key)
i += 1 text = str1+str2+str3
\ No newline at end of file Key_message = Key_message + text
print(Key_message)
\ 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