Commit be872bde by BellCodeEditor

save project

parent 1809117a
Showing with 8 additions and 2 deletions
...@@ -7,4 +7,10 @@ for i in range (len(a)): ...@@ -7,4 +7,10 @@ for i in range (len(a)):
j = j+1 j = j+1
a1.insert(i+j,random.choice(b)) a1.insert(i+j,random.choice(b))
a="".join(a1) a="".join(a1)
print(a) print(a)
\ No newline at end of file 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