Commit 442f277c by BellCodeEditor

auto save

parent 5b911420
Showing with 15 additions and 0 deletions
import random
message='诺依一块去看动漫把!'
a=list(message)
print(a)
for i in range (len(a)):
a.insert(i*2-1,random.choice('dkfenkdslafnda'))
a.insert(random.randint(3,10),'halohalohalo')
print(a)
message='待会出去吃饭'
a=list(message)
print(a)
a.insert(3,"1")
print(a)
\ 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