Wie man ein Python -Programm erstellt, um von 1 bis 100 zu zählen

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