添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

Python 基础教程

  • Python 简介
  • Python 入门
  • Python 关键字和标识符
  • Python 语句,缩进和注释
  • Python 变量,常量和字面量
  • Python 数据类型
  • Python 类型转换
  • Python 输入,输出和导入
  • Python 运算符
  • Python 关键字列表
  • Python 流程控制

  • Python if...else 语句
  • Python for 循环
  • Python while 循环
  • Python break和continue
  • Python pass 语句
  • Python 函数

  • Python 函数
  • Python 函数参数
  • Python 递归(Recursion)
  • Python 匿名函数(Lambda)
  • Python 全局,局部和非局部变量
  • Python Global 关键字
  • Python 模块
  • Python 包(Package)
  • Python 自定义函数
  • Python 数据类型

  • Python 数字(Number)
  • Python 列表(List)
  • Python 元组(Tuple)
  • Python 字符串(String)
  • Python 集合(Set)
  • Python 字典(Dictionary)
  • Python 集合方法
  • Python 文件操作

  • Python 文件I/O
  • Python 目录和文件管理
  • Python 错误和内置异常
  • Python 异常处理
  • Python 自定义异常
  • Python 对象和类

  • Python 面向对象编程
  • Python 类和对象
  • Python 继承
  • Python 多重继承
  • Python 运算符重载
  • Python 日期和时间

  • Python 日期时间(datetime)
  • Python strftime()
  • Python strptime()
  • Python 当前日期和时间
  • Python 获取当前时间
  • Python 时间戳( timestamp)
  • Python time 模块
  • Python sleep()
  • Python 高级知识

  • Python 命名空间和作用域
  • Python 迭代器
  • Python 生成器
  • Python 闭包
  • Python 装饰器
  • Python @property
  • Python 正则表达式(RegEx)
  • Python 随机模块(Random)
  • Python 数学模块(Math)
  • Python 数组
  • Python main() 函数
  • Python 字典理解
  • Python 多态
  • Python pip
  • Python 矩阵和NumPy数组
  • Python 参考手册

  • Python 参考手册大全
  • Python 内置函数
  • Python 字符串方法
  • Python 列表方法
  • Python 字典方法
  • Python 元组方法
  • Python 文件操作方法(File)
  • Python 实例大全
  • Python 文件 readlines() 使用方法及示例

    Python File(文件) 方法

    概述

    readlines() 方法用于读取所有行(直到结束符 EOF)并返回列表,该列表可以由 Python 的 for... in ... 结构进行处理。

    如果碰到结束符 EOF 则返回空字符串。

    语法

    readlines() 方法语法如下:

    fileObject.readlines( );

    参数

    • 没有。

    返回值

    返回列表,包含所有的行。

    示例

    以下示例演示了 readline() 方法的使用:

    文件 nhooo.txt 的内容如下:

    1:www.cainiaoplus.com
    2:www.cainiaoplus.com
    3:www.cainiaoplus.com
    4:www.cainiaoplus.com
    5:www.cainiaoplus.com

    循环读取文件的内容:

    在线示例

    # 打开文件
    fo = open("nhooo.txt", "r")
    print("文件名为: ", fo.name)
    for line in fo.readlines():                          #依次读取每行  
        line = line.strip()                             #去掉每行头尾空白  
        print("读取的数据为: %s" % (line))
    # 关闭文件
    fo.close()
    以上示例输出结果为:
    文件名为:  nhooo.txt
    读取的数据为: 1:www.cainiaoplus.com
    读取的数据为: 2:www.cainiaoplus.com
    读取的数据为: 3:www.cainiaoplus.com
    读取的数据为: 4:www.cainiaoplus.com
    读取的数据为: 5:www.cainiaoplus.com

    Python File(文件) 方法