increment value in pyhon code example
Example: how ro have a incresing variable in python
var = 0
while True:
import time
var = (var + 1)
print(var)
time.sleep (1)
var = 0
while True:
import time
var = (var + 1)
print(var)
time.sleep (1)