已采纳回答 / 慕粉3936973
<...code...>There is one match (i=1) for Java in the first line. This is mutiline, so the whole matcherStr is something like:This is the first JavaAndThis is the second Python<...code...>There are two matchs (i=2) for Java in the first line. ...
2016-10-24
单词读音胡乱读就不说了,编程里用到的re.group,span之类的不是应该先讲定义,方法之后再去使用么,视频根本就是写到哪里想起用哪个了就顺手写上,一点逻辑都没有。既然决定做教学的视频,就要做到逻辑清晰,条理明确才对啊。看完了我现在还不清楚那几个表达式到底是干啥的,有啥要求。
2016-10-23
这样可以保留图片源文件名
listurl=re.findall(r'http://.+\.jpg', buf)
for url in listurl:
req=urllib2.urlopen(url)
f_name=url.split(r'/')[3]
f=open(f_name, 'wb')
buf=req.read()
f.write(buf)
f.close()
listurl=re.findall(r'http://.+\.jpg', buf)
for url in listurl:
req=urllib2.urlopen(url)
f_name=url.split(r'/')[3]
f=open(f_name, 'wb')
buf=req.read()
f.write(buf)
f.close()
2016-10-16
最赞回答 / 慕斯5482594
<...code...>HTTP是基于请求和应答机制的--客户端提出请求,服务端提供应答。urllib2用一个Request对象来映射你提出的HTTP请求,在它最简单的使用形式中你将用你要请求的地址创建一个Request对象,...
2016-10-11