上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: Label、Button 阅读全文
posted @ 2020-10-18 16:52 yescarf 阅读(1011) 评论(0) 推荐(0) 编辑
摘要: 正则表达式(RE)的语法 正则表达式语法由字符和操作符构成 正则表达式的常用操作符: (*|+|?{})? 用于上面出现的任何‘非贪婪’。版本重复匹配次数符号 .*?[a-z] \s 匹配任何空白符和[\n\t\r\v\f]相同 of\sthe print("--正则表达式常用操作符--") mat 阅读全文
posted @ 2020-10-15 16:51 yescarf 阅读(214) 评论(0) 推荐(0) 编辑
摘要: request库+bs4解析 阅读全文
posted @ 2020-10-13 14:07 yescarf 阅读(237) 评论(0) 推荐(0) 编辑
摘要: bs4库使用 阅读全文
posted @ 2020-10-10 15:30 yescarf 阅读(274) 评论(0) 推荐(0) 编辑
摘要: open函数理解 open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None) mode模式 合法mode:r、rb、r+、rb+、w、wb、w+、wb+ 阅读全文
posted @ 2020-10-10 11:34 yescarf 阅读(1061) 评论(0) 推荐(0) 编辑
摘要: 问题: 读写二进制文件,比如图片、文件、视频等 函数: open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None) 读取写入模式: 使用模式为 rb 或 阅读全文
posted @ 2020-10-09 18:27 yescarf 阅读(179) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/pipisorry/article/details/62889137 数组模块array简介 在Python中,列表是一个动态的指针数组,而array模块所提供的array对象则是保存相同类型的数值的动态数组。list的内存分析参考[python数据类型的内 阅读全文
posted @ 2020-10-09 17:54 yescarf 阅读(644) 评论(0) 推荐(0) 编辑
摘要: 整理文件夹:移动文件;新建文件 阅读全文
posted @ 2020-09-30 10:40 yescarf 阅读(403) 评论(0) 推荐(0) 编辑
摘要: openpyxl --用于读取/写入Excel 2010 xlsx / xlsm / xltx / xltm文件 url:https://openpyxl.readthedocs.io/en/latest/index.html 阅读全文
posted @ 2020-09-29 18:53 yescarf 阅读(1905) 评论(0) 推荐(0) 编辑
摘要: pyttsx3库--语音转文字库 文档:https://pyttsx3.readthedocs.io/en/latest/engine.html#changing-volume 阅读全文
posted @ 2020-09-29 14:52 yescarf 阅读(1459) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页