由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - python urlopen(), how to go back to the beginning after readlines()
相关主题
parsing file in node: js or python ?请问哪里有python的code example
Questions about C++ Linux Command Line Parsing王垠对google的看法 (转载)
python gc question后台python wsgi, 前端html, css, javascript
在线问一个qsub的问题。python/javascript有没有一些lib可以比较好的parse pdf文件?
python读入数据的问题python 3.6下面也没有好的parse android apk information的lib?
python 问题这个regular expression应该怎么写
请教一个初级问题python regexp question
请问Python初学者怎么学How to Parsing function in haskell?
相关话题的讨论汇总
话题: eachline话题: urlopen话题: readlines话题: beginning话题: back
进入Programming版参与讨论
1 (共1页)
w*s
发帖数: 7227
1
so i open this url with
fh = urllib2.urlopen()
for eachline in fh.readlines()
print eachline
.........
now i want to go back to the beginning, and parse the page again.
is there a seek(0) or ?
a9
发帖数: 21638
2
fh = urllib2.urlopen()
fl = fh.readlines()
for eachline in fl:
print eachline
for eachline in fl:
print eachline
这样?

【在 w*s 的大作中提到】
: so i open this url with
: fh = urllib2.urlopen()
: for eachline in fh.readlines()
: print eachline
: .........
: now i want to go back to the beginning, and parse the page again.
: is there a seek(0) or ?

w*s
发帖数: 7227
3
一个字:牛!

【在 a9 的大作中提到】
: fh = urllib2.urlopen()
: fl = fh.readlines()
: for eachline in fl:
: print eachline
: for eachline in fl:
: print eachline
: 这样?

1 (共1页)
进入Programming版参与讨论
相关主题
How to Parsing function in haskell?python读入数据的问题
parsing bibliography and sorting (转载)python 问题
问java api的问题请教一个初级问题
请教一个parser的问题请问Python初学者怎么学
parsing file in node: js or python ?请问哪里有python的code example
Questions about C++ Linux Command Line Parsing王垠对google的看法 (转载)
python gc question后台python wsgi, 前端html, css, javascript
在线问一个qsub的问题。python/javascript有没有一些lib可以比较好的parse pdf文件?
相关话题的讨论汇总
话题: eachline话题: urlopen话题: readlines话题: beginning话题: back