Kindly help explain why the result is an empty list | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Kindly help explain why the result is an empty list

print(list(range(0,10,-2)))

16th Sep 2020, 4:41 AM
Gbadegesin Muhammed
Gbadegesin Muhammed - avatar
2 Answers
+ 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
16th Sep 2020, 4:59 AM
Kevin ★
0
print(list(range(10,0,-2)) will work.
23rd Sep 2020, 4:07 PM
Aravind Shetty
Aravind Shetty - avatar