Python Quiz!
Answer:
The above code will output [], and will not result in an IndexError.
As one would expect, attempting to access a member of a list using an index that exceeds the number of members (e.g., attempting to access list[10] in the list above) results in an IndexError. However, attempting to access a slice of a list at a starting index that exceeds the number of members in the list will not result in an IndexError and will simply return an empty list.
What makes this a particularly nasty gotcha is that it can lead to bugs that are really hard to track down since no error is raised at runtime.
To answer more Python Quizzes, check the ones from The Python Guru here: http://thepythonguru.com/python-guru-quiz/
If you want to explore more, visit our Python edu & tutorials section! Below are some examples:
A Python Game Boy emulator
Pokémon GO API’s