Python使用 positive lookahead 实现用户密码的校验
如果要校验用户密码,有两种写法。 写法1:多个正则校验 def check_password(password … Read more Python使用 positive lookahead 实现用户密码的校验
博学之、审问之、慎思之、明辨之、笃行之
如果要校验用户密码,有两种写法。 写法1:多个正则校验 def check_password(password … Read more Python使用 positive lookahead 实现用户密码的校验
安装 pip install jsonpath-ng 测试 参考文章 https://www.journald … Read more Python 使用 jsonpath-ng 以字符串的方式解析 Json
PPT:Understanding the Python GIL http://www.dabeaz.com/ … Read more Python GIL 全局解释器锁 的 相关资料
Python用于处理文本数据绝对是个利器,极为简单的读取、分割、过滤、转换支持,使得开发者不需要考虑繁杂的流文 … Read more Python使用list字段模式或者dict字段模式读取文件的方法
用到了os的两个接口: 1、列出文件夹中的所有文件(也包含目录) os.listdir(path) Retur … Read more Python批量重命名文件的方法
文件是由很多行组成的,这些行组成一个列表,python提供了处理列表很有用的三个函数:map、reduce、f … Read more Python内置函数map、reduce、filter在文本处理中的应用