Q23.For what values of `a`, `b`, and `c` does the code given below print a sequence which has 0 as one of the elements?
```
for i in range(a, b, c):
print(i)
```
Save
Check
Details
Q23
16 Oct 2022
Q23.For what values of `a`, `b`, and `c` does the code given below print a sequence which has 0 as one of the elements?
```
for i in range(a, b, c):
print(i)
```