Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to make an object set once python

cords = 0
swiched = 100
done = False
while True:
    cords += 1
    if done == False:
        swiched = cords
        done = True
    print(swiched)
 
PREVIOUS NEXT
Tagged: #object #set #python
ADD COMMENT
Topic
Name
8+2 =