Question: Python What is the value of total after the following code executes, if x is 2 and y is 6: total = 0 i=0 for
What is the value of total after the following code executes, if x is 2 and y is 6: total = 0 i=0 for i in range(x,y): total.append(i) 2,3,4,5,6] [2.3,4,5) [0,1,2,3,4,5,6]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
