python better while loop that count up

Solutions on MaxInterview for python better while loop that count up by the best coders in the world

showing results for - "python better while loop that count up"
Lia
15 Jul 2019
1for number in range(1,101):
2    print(number)
3