Python模块之pysnooper
2020-12-29 20:28
标签:调试 信息 print 结果 传递 python模块 == hello div 安装pysnooper模块 pip3 install pysnooper 具体使用 import pysnooper @pysnooper.snoop() if __name__ == ‘__main__‘: 具体值的传递 Python模块之pysnooper 标签:调试 信息 print 结果 传递 python模块 == hello div 原文地址:https://www.cnblogs.com/qianjinyan/p/13024052.html调试程序时,很多人喜欢直接用print来代替断点调试,而pysnooper模块比print更方便,以装饰器的形式存在
def test():
a = 100*1
sum=0
for i in range(10):
sum +=i
sum2 = sum +a
return sum2
test()output=‘a.txt‘ #将结果保存到文件a.txt
variables=(‘a‘) #打印非局部变量a的值
depth=1 #Show snoop lines for functions that your function calls
prefix=‘hello‘ #在每一行打印信息前添加hello
文章标题:Python模块之pysnooper
文章链接:http://soscw.com/index.php/essay/39123.html