nellorean.com
Python Exercise5: From Nellorean-Recording the history of Nellore
Print values from 0 to 10. for i in range(11): print(i) Print values from 10 to 0 for x in range(10,-1,-1): print(x) Print values from 100 to 170 f…