Commit b063a564 by BellCodeEditor

save project

parent 678d9fbe
Showing with 10 additions and 1 deletions
...@@ -14,10 +14,19 @@ for i in message: ...@@ -14,10 +14,19 @@ for i in message:
t = i + str1+str2 t = i + str1+str2
a+=t a+=t
a2 = list(a) a2=list(a)
u = random.randint(0,len(a)) u = random.randint(0,len(a))
a2.insert(u,gan) a2.insert(u,gan)
b2 = "".join(a2) b2 = "".join(a2)
print(b2) print(b2)
a2.remove(gan)
str7 = "".join(a2)
i = 0
while(i<len(str7)):
print(str7[i],end="")
i += 3
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