python for loop m to n

Solutions on MaxInterview for python for loop m to n by the best coders in the world

showing results for - "python for loop m to n"
Laetitia
01 Sep 2018
1for i in range (m,n+1):
2    s += i
3    print(i)
4
5print(s)
6