Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python how to make something run once

cords = 0
swiched = 100
done = False
while True:
    cords += 1
    if done == False:
        swiched = cords
        done = True
    print(swiched)
 
PREVIOUS NEXT
Tagged: #python #run
ADD COMMENT
Topic
Name
3+7 =