cara membuat program python untuk dihitung dari 1 hingga 100

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