so I want to run a piece of code that will run the entire time yet I also want to run the rest of my script.
example:
import time
counter = 0
#i want to run this code the entire time:
while True:
print(counter)
counter = counter + 1
time.sleep(1)
continue
#but i also want to run this code so the user can add more to the counter:
userinput = input()
if userinput == "":
counter = counter + 10