5 2 5 3a counting 10 to 100 by

Solutions on MaxInterview for 5 2 5 3a counting 10 to 100 by by the best coders in the world

showing results for - "5 2 5 3a counting 10 to 100 by "
Sara
04 Nov 2018
1for i in range(1,11):
2    print(10*i)
Romina
31 Apr 2020
1for i in range(10,110,10)
2    print(i)