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 = "动漫展"
length =len(message)
i = 0
while i < length:
elementm = message[i]
print( elementm )
i += 1
\ No newline at end of file
Key_message=""
for i in message:
str1 = i
str2 = random.choice(Key)
str3 = random.choice(Key)
text = str1+str2+str3
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