for url in mylist2:
imgpath = str(i)+'.jpg'
with open(imgpath,'wb') as f:
req = urllib.request.urlretrieve(url,os.path.abspath(imgpath))
i+=1
imgpath = str(i)+'.jpg'
with open(imgpath,'wb') as f:
req = urllib.request.urlretrieve(url,os.path.abspath(imgpath))
i+=1
2017-08-04
非贪婪模式有什么用呢.试试这个
re.match(r'[0][a-z]*?[0]','0aaaaaaaaa0')
re.match(r'[0][a-z]*?[0]','0aaaaaaaaa0')
2017-08-02
说明下,楼下有位慕粉(慕粉6378865)理解错了。慕粉(zero4eva、慕UI1303120)理解正确。希望不要被错误评论误导
2017-08-02
str = '原字符串',会导致一个报错,“'str' object is not callable”!
原因:python中一切都是变量,那么函数str(),他的变量名就是str,又定义了自己的变量str,所以函数str()被覆盖掉了!!故导致调用str()的时候报如上错误,python中注意变量的名字问题!
原因:python中一切都是变量,那么函数str(),他的变量名就是str,又定义了自己的变量str,所以函数str()被覆盖掉了!!故导致调用str()的时候报如上错误,python中注意变量的名字问题!
2017-07-26