Commit 3e8b6788 by BellCodeEditor

auto save

parent bf4a06a2
Showing with 10 additions and 0 deletions
import random
str1="port:@#$%^&"
message="woshichenjia"
list=list(message)
print(list)
i=random.randint(0,len(message))
list.insert(i,str1)
print(list)
message="".join(list)
print(message)
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