how to get python to play a line of code once, then skip it on future loops code example
Example: how to make code only go once python
run_once = 0
while 1:
if run_once == 0:
myFunction()
run_once = 1:
run_once = 0
while 1:
if run_once == 0:
myFunction()
run_once = 1: