經(jīng)常出現(xiàn)異常的時(shí)候很煩躁的是不知道到底是什么導(dǎo)致了異常俯抖,只能加log或者print重現(xiàn)。最近發(fā)現(xiàn)一個(gè)包better_exceptions,只要import了這個(gè)包忆蚀,就可以直接在exception時(shí)候把值都打印出來,打印的還挺漂亮,mark一下
安裝
pip install better_exceptions
使用
import better_exceptions
也可以用 python -m better_exceptions
在命令行里用
ly@ly-VirtualBox:/tmp$ python -m better_exceptions
Python 3.5.2 |Anaconda 4.2.0 (64-bit)| (default, Jul 2 2016, 17:53:06)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux
Type "help", "copyright", "credits" or "license" for more information.
(BetterExceptionsConsole)
>>> a=[]
>>> a[1]
Traceback (most recent call last):
File "<console>", line 1, in <module>
a[1]
└ []
IndexError: list index out of range