run function in one time python 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: