>>> try: raise Exception(1,2,3); except Exception as e: print(e); print(repr(e)); print(str(e)); print(e.args); (1, 2, 3) Exception(1, 2, 3) (1, 2, 3) (1, 2, 3) >>> 要特别注意的是为except子句指定变量的方法。在diveintopython里竟然没有教这一点,真是让人百猜不透