- 博客(9)
- 收藏
- 关注
原创 xpath初步语法
文章目录选取节点谓语通配符选取多个路径运算符选取节点-== nodename==:选取此节点下的所有子节点/:在前,表示从根节点选取;在后表示某节点下的节点//:从全局节点中选取节点,随便在哪个位置@:选取某个节点的熟悉。//book[@price]谓语谓语用来查找某个特定的节点或者包含某个特定值的节点,被嵌在方括号中。路径表达式描述/bookstore/b...
2020-03-23 22:12:33 193
原创 resquest库
文章目录查看响应内容get请求发送POST请求使用代理cookiesession处理不信任的SSL证书查看响应内容resp.text返回unicode格式的数据,返回数据类型是"str"resp.content返回字节流数据,返回数据类型是"bytes"get请求resp = requests.get(url, params=kw, headers=headers)发送POST请求...
2020-03-22 21:59:21 353
原创 http.cookiejar模块
该模块主要的类有CookieJar、FileCookieJar、MozillaCookieJar、LWPCookieJar。CookieJar:管理HTTP cookie的值,存储cookie,向传出的HTTP请求添加cookie的对象。整个cookie都存在内存中,对cookie实例进行垃圾回收后,cookie也将丢失。FileCookieJar(filename,delayload=No...
2020-03-22 17:00:23 380
原创 urllib库
文章目录urlopen函数urlretrieve函数urlencode函数parse_qs函数urlparse和urlsplitrequest.Request类urlopen函数python3中,所有和网络请求相关的方法,都被集到urllib.request模块下面。form urllib import requesteresp = request.urlopen("http://www....
2020-03-17 22:30:32 1208
原创 打印乘法表
注意标识符的使用三角形的嵌套row = 1while row <= 9:col = 1while col <= row:ss = row * colprint("%d * %d = %d " % (row, col,ss), end="")col += 1print("")row += 1
2020-02-10 20:43:17 120
原创 嵌套循环
row = 1while row <= 5:col = 1== while col<= row:==print("*", end="")col += 1row += 1print("")
2020-02-10 19:26:15 106
原创 elif前不能有字符语句
while True:‘’‘监视键盘和鼠标事件’’’for event in pygame.event.get():‘’‘退出pygame’’’if event.type == pygame.QUIT:sys.exit()–’’’ 向左移动火箭 ‘’’–elif event.type == pygame.KEYDOWN:‘’‘向左移动火箭’’’if event.key == py...
2019-07-23 21:26:24 124
原创 title不能用于列表
def show_physicist(names_list):print(names_list.title())physicist_names = [‘einstein’,‘newton’,‘hawking’]show_physicist(physicist_names)AttributeError:‘list’ object has no attritube title修改后的代码d...
2019-06-23 21:33:09 397
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人