Print number from 1 to 10 in python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Method-1 (Source Code) for n in range(1,11): print(n) Output 12345678910 Method-2 (Source Code) for n in range(1,11):print(n,end=”,”) Output 1,2,3,4,5,6,7,8,9,10, View All Python Programs