摘要:
一、nnlog日志模块,使用之前,需要先pip安装下 import nnlog import traceback log=nnlog.Logger('python.log',level='debug',when='D',backCount=5) # when D是每天 M每月 S每秒 # 日志级别 阅读全文
摘要:
一、读取excel中的内容 students.xml里的内容如下: import xlrd book = xlrd.open_workbook('students.xls') #打开操作的文件 sheet = book.sheet_by_index(0) #选择文件内的sheet页 # sheet 阅读全文