# list poppin'
a = [1, 2, 3]
print(a.pop())
try:
except IndexError:
print("IndexError raised")
else:
raise AssertionError("No IndexError raised")