How to get the sum 750 using for loop and range function in Python code example
Example: how to iterate through range in python
for i in range(start, end):
dosomething()
#The i is an iteration variable that you can replace by anytthing. You do not need to define it.