C-17-Q087mediumsingle_mcq
With range(1, 6, 1), the step value used in iteration is:
With range(1, 6, 1), the step value used in iteration is:
- a0
- b1
- c2
- d-1
ব্যাখ্যা
In range(start, stop, step), the third argument is the step. Here it is explicitly given as 1, so the counter increases by one on each iteration.