Python读取文本文件基本演示 1、读取文本文件使用open函数 open(path, mode, encoding) 1)path -- 文本文件的路径 2)mode -- 文本文件的操作模式 r -- read w -- write a -- append 3)encoding -- 编码类型 UTF-8 GBK 2、文本文件 -- txt, csv 逗号分隔值文件格式 3、open函数读取文件内容有三种常规的操作方法 1) read() -- 一次读取文件所有内容,返回一个文本 2) readlines() -- 一次读取文件所有内容,返回一个list列表 3) readline() -- 读取一行,返回一个文本