2018年10月5日

摘要: 正则表达式 --是对于字符串操作的一种逻辑公式 用于过滤逻辑 一般常用的正则表达式 比如qq号码 日期 身份证号码 都可以在在线工具上面找到对应的正则表达式写法(偷懒) 常规匹配 import re re.match(pattern.string,flags = 0) result = re.mat 阅读全文
posted @ 2018-10-05 18:54 KISS_Abhay 阅读(173) 评论(0) 推荐(0)
 
摘要: 根据静觅老师博客所写 博客地址:https://cuiqingcai.com/ Requests -- Python实现的简单易用的HTTP库 安装方法 pip install Requests response = requests.get("www.baidu.com") 基本 get 方式 r 阅读全文
posted @ 2018-10-05 11:43 KISS_Abhay 阅读(87) 评论(0) 推荐(0)