Question: In Python, which of the following sequences would be generated by the given line of code: >>> for i in range (5, 0, -2): print
In Python, which of the following sequences would be generated by the given line of code:
>>> for i in range (5, 0, -2):
print (i)
options:
1) 5 4 3 2 1 0 -1 2) 5 4 3 2 1 0 3) 5 3 1 4) None of the above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
