# File: toten.py # count to 10 # # Matt Bishop, MHI 289I, Winter 2019 # # # count to 10 using range(10), # and add 1 before you print it # print("Count to 10 one way") for i in range(10): print(i+1) # # count to 10 using range in such a way # that you don't have to add 1 # print("Now count to 10 another way") for i in range(1, 11): print(i)