Question: The range ( ) function in Python returns a sequence of numbers, starting from an integer number ( optional - default is 0 ) ,

The range () function in Python returns a sequence of numbers, starting from an integer number (optional - default is 0), stopping before a specified integer number(required), and incrementing by an integer number (optional - default is 1). The syntax is range(start, stop, step). For example, the sequence of numbers that would be generated by range ,3) would be 4,7,10.
What will the following loop display?
sum =0
for i in range (0,25,5) :
sum +=i
print(sum)
0,5,10,15,20,25
50
0,5,10,15,20
30
 The range () function in Python returns a sequence of numbers,

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!