Comment faire un programme Python pour compter de 1 à 100

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