>>> a = 10 >>> b = 10 >>> _ Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name '_' is not defined >>> a+b 20 >>> _ 20 >>> _ * 2 40 >>> _ 40 >>> _ / 2 20