
Python
文章平均质量分 81
yes1cpp
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
os.path.abspath 源码分析
os.path.abspath(path)Return a normalized absolutized version ofthe pathname path. On most platforms, this is equivalent to callingthefunction normpath() asfollows:normpath(join(os.getcwd(), path))原创 2015-01-30 19:15:28 · 4022 阅读 · 0 评论 -
python Loging 入门
初级教程Logning 模块定义了很多方法和类,为application和libraries实现了一个灵活的事件记录系统。 什么时候使用Log: Task you want to performThe best tool for the taskConsole 中展示print()程序正常运原创 2015-01-18 13:50:10 · 979 阅读 · 0 评论 -
python Logger 高级教程
高级教程logging library 四个模块lLoggers暴露的接口,给代码使用 Handlers 把log 记录送到合适的destination Filter 过滤器,决定哪个log记录被输出 Formatters ,最终输出的log记录格式 Logevent information 在loggers ,handlers ,filters 和formatte翻译 2015-01-18 13:55:08 · 6318 阅读 · 0 评论