Commit 36be8f36 by BellCodeEditor

auto save

parent 18891748
Showing with 8 additions and 0 deletions
import random
s = "abcde"
a = list(s)
p = random.randint(0,len(s))
a.insert(p,"x")
res = "".join(a)
print(res)
\ 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