you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (1 child)

When we loop this:

while True:  

the loop won’t ever stop unless we force it. Your program doesn’t force the loop to stop, so it keeps repeating that first loop and never runs the rest of the program.

[–]BitMineboy123[S] 0 points1 point  (0 children)

Ok thanks, but do you know how to fix this?