摘要:
1 """ 2 正则表达式: 3 4 1. \b hello:boudary匹配结尾边界以hello结尾 5 hello \b :匹配以hello开头 6 2. .是占位符,*是匹配0个到多个 7 \bhi.*:以hi开头的单词匹配整个单词,一个.匹配后一个字母,2个.匹配后两个字符 8 \bhi.[^,]*:以hi开头的不包含逗号的字符 9 3.... 阅读全文
摘要:
1 # !/usr/bin/python 2 # -*- coding:UTF-8 -*- 3 # author:jiyanjiao 4 # 基础包:excel的封装 5 6 import xlrd 7 8 class readExcel(object): 9 def __init__(self,path): 10 self.path = path ... 阅读全文
摘要:
requests发送get请求 2.有参数的get请求 requests发送post请求 2.text/xml 3.application/json 4.form-data(表单提交) 阅读全文