basically, I have code like this:
while True:
number = int(len(oilrigs)) * 49
number += money
time.sleep(1)
Before that, I have a start screen. However, because of this, while the true loop, it blocks it from starting the actual initial screen. Instead, it simply displays this.
So how do you put the code in the background?
source
share