Mundo em Python

Vou contar até 3

import time
print("Vou contar até 3")
time.sleep(2)
i = 1
while i <= 3:
print(i)
time.sleep(2)
i += 1
0