从来就没有救世主  也不靠神仙皇帝  要创造人类的幸福  全靠我们自己  

随笔分类 -  Python

摘要:1. py打包成exe 安装pyinstaller pyinstaller -F -w -i xx.ico xxxxx.py 2. python自带的GUI tkinter 3.pyQT 阅读全文
posted @ 2021-03-18 02:12 T,X
摘要:1. 某目录下所有x类型的文件,包括子目录下的 (1) 递归的 def getAllFiles(rootPath, allFiles, fileTypes): files = os.listdir(rootPath) for file in files: pathTmp = os.path.join 阅读全文
posted @ 2020-09-12 17:35 T,X
摘要:import re 1. 正则的常用方法 (1)匹配 re.match(pattern,string,flags=0) pattern:正则表达式 string:要匹配的字符串 flags:标志(是否区分大小写、是否多行匹配等) re.l 大小写不敏感 re.L re.M 多行匹配,影响 ^ $ r 阅读全文
posted @ 2020-07-28 21:31 T,X
摘要:内置函数 阅读全文
posted @ 2020-07-28 20:44 T,X
摘要:官网: https://openpyxl.readthedocs.io/ 阅读全文
posted @ 2020-07-25 22:52 T,X
摘要:openpyxl的简单使用 阅读全文
posted @ 2020-07-25 22:47 T,X
摘要:python--json 阅读全文
posted @ 2020-07-25 17:03 T,X
摘要:python csv文件操作 阅读全文
posted @ 2020-07-25 16:26 T,X
摘要:日志 阅读全文
posted @ 2020-07-25 15:18 T,X