廖雪峰Python有趣廖雪峰python2.7教程pdf版寥雪峰python乐趣
下载地址 https://share.weiyun.com/RS9A6Xk6
资料目录 廖雪峰python视频教程1 爬虫的基本框架及知识(day1-day15) 廖雪峰python视频教程2 scapy框架及爬虫进阶(day16-day20) 廖雪峰python视频教程3 爬虫高级知识及就业培训(day21-day28) 廖雪峰python教程官网doc 廖雪峰 2018年官方最新Python3教程(一)pdf 廖雪峰 2018官方Python3教程(二)pdf 廖雪峰2018官方Python3教程(三)pdf 廖雪峰python学习笔记(入门+进阶).doc Python3高级教程(开课吧)pdf Python3零基础教程(开课吧)pdf 利用Python进行数据分析(中文版)pdf 廖雪峰商业爬虫案例 廖雪峰商业爬虫课件 廖雪峰商业爬虫练习答案 爬虫第一节-爬虫第十四节 Python爬虫预习书籍 python环境和pychram 举例 seek() 这个函数的功能就是让指针移动。比如: >>> f = open("you.md") >>> f.readline() 'You Raise Me Up\n' >>> f.readline() 'When I am down and, oh my soul, so weary;\n' 现在已经移动到第四行末尾了,看seek()的能力: >>> f.seek(0) 意图是要回到文件的最开头,那么如果用f.readline()应该读取第一行。 >>> f.readline() 'You Raise Me Up\n' 果然如此。此时指针所在的位置还可以用tell()来显示,如: >>> f.tell() 17L >>> f.seek(4) f.seek(4)就将位置定位到从开头算起的第四个字符后面,也就是"You"之后、字母"R"之前的位置。 >>> f.tell() 4L tell()也是这么说的。这时候如果使用readline(),就是从当前位置开始到行末。 >>> f.readline() 'Raise Me Up\n' >>> f.close() seek()还有别的参数,具体如下: seek(...)seek(offset[,whence])->None.Move to new file position. Argument offset is a byte count.Optional argument whence defaults to 0(offset from start of file,offset should be>=0);other values are 1(move relative to current position,positive or negative),and 2(move relative to end of file,usually negative,although many platforms allow seeking beyond the end of a file).If the file is opened in text mode,only offsets returned by tell()are legal.Use of other offsets causes undefined behavior.Note that not all file objects are seekable. whence的值: 默认值是0,表示从文件开头开始计算指针偏移的量(简称偏移量)。这时offset必须是大于等于0的整数。 是1时,表示从当前位置开始计算偏移量。offset如果是负数,则表示从当前位置向前移动,整数表示向后移动。 是2时,表示相对文件末尾移动。
|