Commit be872bde by BellCodeEditor

save project

parent 1809117a
Showing with 7 additions and 0 deletions
...@@ -8,3 +8,9 @@ for i in range (len(a)): ...@@ -8,3 +8,9 @@ for i in range (len(a)):
a1.insert(i+j,random.choice(b)) a1.insert(i+j,random.choice(b))
a="".join(a1) a="".join(a1)
print(a) print(a)
z = random.randint(0,len(a)-1)
q = random.randint(0,len(b)-1-5)
a1 = list(a)
a1.insert(z,b[q:q+5])
a="".join(a1)
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