摘要:
logging模块 什么是logging模块 logging模块是python提供的用于记录日志的模块 为什么需要logging 我们完全可以自己打开文件然后,日志写进去,但是这些操作重复且没有任何技术含量,所以python帮我们进行了封装,有了logging后我们在记录日志时 只需要简单的调用接口 阅读全文
摘要:
一. sys三种流 参考:‘’https://blog.csdn.net/qq_41654985/article/details/80396997" import syssys.stdout.write('msg')sys.stderr.write('msg')msg = sys.stdin.rea 阅读全文