+ 1
Kindly help explain why the result is an empty list
print(list(range(0,10,-2)))
2 odpowiedzi
+ 7
A negative step(-n) means "go backwards n steps at a time".
You can't go backwards from 0 to 10.
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2434/?ref=app
0
print(list(range(10,0,-2))
will work.