Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

variable plus one python

points = 0
while points != 10:
    points += 1 # or points = points + 1
	print(points)
 
PREVIOUS NEXT
Tagged: #variable #python
ADD COMMENT
Topic
Name
5+8 =