Cómo hacer un programa de Python para contar de 1 a 100
i = 1
while i < 100:
print(i)
i += 1
Programmer of empires
i = 1
while i < 100:
print(i)
i += 1