Commit 5ba105fe by BellCodeEditor

auto save

parent a0cb593f
Showing with 6 additions and 2 deletions
import random
s = "abcde"
a = list(s)
a.insert()
\ No newline at end of file
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