摘要:
xlwt/xlrd库 存Excel文件:(如果存储数据中有字符,那么写法还有点小小的变化) [python] view plain copy import xlwt workbook = xlwt.Workbook(encoding='utf-8') booksheet = workbook.add 阅读全文
摘要:
"." Matches any character except a newline. "^" Matches the start of the string. "$" Matches the end of the string or just before the newline at the e 阅读全文