Vou contar até 3 Publicado 25-09-2023 Caio Mário import timeprint("Vou contar até 3")time.sleep(2)i = 1while i <= 3: print(i) time.sleep(2) i += 1 0