Jak zrobić program Python, który się liczy od 1 do 100

i = 1
while i < 100:
  print(i)
  i += 1
Programmer of empires