摘要: >>> a=[page for page in range(10)]>>> print (a)[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]>>> a=[page*2 for page in range(10)]>>> print(a)[0, 2, 4, 6, 8, 10, 12, 1 阅读全文
posted @ 2020-02-16 16:24 myrj 阅读(168) 评论(0) 推荐(0)
摘要: //img/@src 得到所有img标签的src值 //a/text() 得到所有A标签中的文本 name=response.xpath('//img@src').getall() #getall()从对象中获取具体值 import requests,re from lxml import etre 阅读全文
posted @ 2020-02-16 16:00 myrj 阅读(234) 评论(1) 推荐(0)
摘要: r'[\u4e00-\u9fa5]汉字 .匹配除换行符外的任意字符 \d匹配所有数字 ,与[0-9]相同[0123456789] \D匹配非数字字符,[^0-9] \w匹配数字,字母,下划线[0-9a-zA-Z_] \W匹配非数字 字线 下划线[^0-9A-Za-z] \s匹配任意空白符(空格 换行 阅读全文
posted @ 2020-02-14 20:18 myrj 阅读(142) 评论(0) 推荐(0)
摘要: 执行过程中出错,复制错误信息,利用TRY得到相应的错误,并用特别方法解决: print(3/0)提示: Traceback (most recent call last): File "<pyshell#0>", line 1, in <module> print(3/0)ZeroDivisionE 阅读全文
posted @ 2020-02-14 18:15 myrj 阅读(170) 评论(0) 推荐(0)
摘要: import itertools mylist=list(itertools.permutations([1,2,3,4],3)) #排列 print(mylist) print(len(mylist)) mylist=list(itertools.combinations([1,2,3,4],3) 阅读全文
posted @ 2020-02-14 17:41 myrj 阅读(197) 评论(0) 推荐(0)
摘要: import os def file_name(file_dir): for root, dirs, files in os.walk(file_dir): print(root) #当前目录路径 print(dirs) #当前路径下所有子目录 print(files) #当前路径下所有非目录子文件 阅读全文
posted @ 2020-02-13 14:47 myrj 阅读(608) 评论(0) 推荐(0)
摘要: https://images.weserv.nl/?url= 阅读全文
posted @ 2020-02-12 21:21 myrj 阅读(115) 评论(0) 推荐(0)
摘要: Python encode()encode() 方法以 encoding 指定的编码格式编码字符串。errors参数可以指定不同的错误处理方案。写法:str.encode(encoding='UTF-8',errors='strict')参数encoding -- 要使用的编码,如"UTF-8"。e 阅读全文
posted @ 2020-02-11 21:04 myrj 阅读(251) 评论(0) 推荐(0)
摘要: Python startswith()方法Python startswith() 方法用于检查字符串是否是以指定子字符串开头,如果是则返回 True,否则返回 False。如果参数 beg 和 end 指定值,则在指定范围内检查 语法:str.startswith(str, beg=0,end=le 阅读全文
posted @ 2020-02-11 20:37 myrj 阅读(252) 评论(0) 推荐(0)
摘要: 自定义file_path()函数,即可以原有图像文件名为名来保存,并分类保存 def file_path(self, request, response=None, info=None): image_guid = request.url.split('/')[-2]+"/"+request.url 阅读全文
posted @ 2020-02-10 19:51 myrj 阅读(399) 评论(0) 推荐(0)