07 | Exceptions
Exceptions
- Practice all 8 of the "Try if Yourself" code samples here
- Try and Except from one of our online examples (line28-33)
my_list = []
try:
element = my_list.pop() # Trying to pop from an empty list
print(element)
except IndexError:
print("Cannot pop from an empty list")