首页下载资源行业研究notes11111.zip

ZIPnotes11111.zip

weixin_451744173.07MB需要积分:1

资源文件列表:

notes.zip 大约有17个文件
  1. notes/1.py 637B
  2. notes/18255b1ed6204f3baeec431006bbdc1a.png 1.35MB
  3. notes/c++.md 1.03KB
  4. notes/cmake 交叉编译.md 5.57KB
  5. notes/code_skill_notes.html 20.96KB
  6. notes/code_skill_notes.md 9.42KB
  7. notes/example.html 7.91KB
  8. notes/example.md 2.54KB
  9. notes/image.png 34.07KB
  10. notes/image-1.png 129.41KB
  11. notes/image-2.png 70.05KB
  12. notes/image-3.png 705.03KB
  13. notes/image-4.png 704.57KB
  14. notes/image-5.png 116.75KB
  15. notes/work_notes.md 313B
  16. notes/za.html 4.13KB
  17. notes/za.md 747B

资源介绍:

notes11111.zip
# 打印日志 import logging import logging # 配置日志记录器 logging.basicConfig(level=logging.INFO) # 设置日志记录器的级别为 INFO # 输出日志信息 logging.info('info级别,正常输出信息,打印正常完成的操作信息') # 打印到控制台 # logging.debug('debug级别,最低级别,打印调试信息') logging.info('info级别,正常输出信息,打印正常完成的操作信息') # logging.warning('waring级别,打印告警信息') # logging.error('error级别,打印报错信息') # logging.critical('critical 级别,等级最高,打印致命的错误信息')
100+评论
captcha