While Loops

While loops work while a expression is valid.

variable = 0
while variable <= 3:
….print(“haha”)
….variable =+ 1

Leave a Comment