+ 2
for i in range (0, 20, ?): print(i)
python for i in range (0, 20, ?): print(i) please fill the right answer at ? symbol
5 Answers
+ 5
?? there is no 'right' answer (unless the output is specified). Its a 'step'. Throw a few numbers in and have a look at the output, try, 2, 3, 4,or 5 for example.
+ 2
python
for i in range (0, 20,2):
print(i)
0
WDYM
0
40
0
How????????