variable plus un python

points = 0
while points != 10:
    points += 1 # or points = points + 1
	print(points)
Difficult Dunlin