C-17-Q088mediumsingle_mcq
With range(1, 6, -1), the loop body in Python:
With range(1, 6, -1), the loop body in Python:
- aRuns five times
- bDoes not execute (empty range)
- cCounts down from 6 to 1
- dRaises a syntax error
With range(1, 6, -1), the loop body in Python: