三种读取的区别-read、readline、readlines

read 读取整个文件,readline 一次读取一行,readlines 读取整个文件到一个list中,配合遍历for循环使用,可以看到readlines 和read的区别,readlines每一行后面都有‘\n’


配合for循环使用,以及更规范的写法:

但是使用request模块时,使用read较方便

from urllib import request

url='http://bills.mugglecode.com/sample.html' 

geturl=request.urlopen(url)

print(geturl.read())

你可能感兴趣的:(三种读取的区别-read、readline、readlines)