Seen a few q's like these, nothing helped ): Is there a way of running a loop to check if a number is more than say, 100, and if so, do something? For example:
while x == 1:
#DoStuff
and have this: running simultaneously in the background without waiting upon a user for their input?
if moneyLoop > 100:
nCoins = nCoins + 1?