Commit 5ba105fe by BellCodeEditor

auto save

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