#if Want to print 0 to 9
for i in range(0,10):
print(i)
i += 1
#if want to print 1 to 10
for i in range(0,10):
i += 1
print(i)
for i in range(1, 11):
print(i)
#Code With Redoy: https://www.facebook.com/codewithredoy/
#My python lectures: https://cutt.ly/python-full-playlist
n = 10
for i in range(n, -1, -1):
print(i)