摘要:
python实现磁盘监控并邮件告警 http://www.jb51.net/article/82892.htm python input键值输入 http://www.jb51.net/article/53914.htm 一个尝试 http://sem.shiguangkey.com/google/ 阅读全文
摘要:
1 # -*- coding:utf-8 -*- 2 3 __autor__ = "在路上_UP" 4 5 from random import choice 6 import string 7 8 def GenPasswd(length=8,chars=string.ascii_letters+string.digits): 9 return ''.join(... 阅读全文
摘要:
python的logging模块提供了记录程序运行情况的日志功能,类似于Apache的log4j,很好很强大,这里我们就来看一下Python中内置的日志模块logging用法详解 logging模块简介 Python的logging模块提供了通用的日志系统,可以方便第三方模块或者是应用使用。这个模块 阅读全文