>>> 1 / 0
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ZeroDivisionError: integer division or modulo by zero
>>> Monty * Python
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'Monty' is not defined
>>> "42" + 12
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: cannot concatenate 'str' and 'int' objects
>>> open("spam.txt","r")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IOError: [Errno 2] No such file or directory: 'spam.txt'