x = 0 while x < 4: print(x) x += 1 Make it a for loop
Answer: Here you go :)
Explanation:
x = 0
for n in range(4):
print(x)