how to run from a while true in python shell code example
Example 1: while true python
while True:
doSomething()
Example 2: while not command in python
condition = 3
while not (condition == 0) :
print(condition)
condition = condition - 1