python while loop
i = 1 while i < 5: print(i) i = i + 1 a = [1, 2, 3] * 5 while 3 in a a.remove(3) print(a)