Python之读取TXT文件的三种方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python之读取TXT文件的三种方法相关的知识,希望对你有一定的参考价值。

参考了https://blog.csdn.net/shandong_chu/article/details/70173952

-- coding: UTF-8 --

import sys

方法一:
#read txt method one
f = open("./image/abc.txt")
line = f.readline()
while line:
print line
line = f.readline()
f.close()

方法二:
#read txt method two
f = open("./image/abc.txt")
for line2 in open("./image/abc.txt"):
print line2

方法三:
#read txt method three
f2 = open("./image/abc.txt","r")
lines = f2.readlines()
for line3 in lines:
print line3

以上是关于Python之读取TXT文件的三种方法的主要内容,如果未能解决你的问题,请参考以下文章

Python 之 读取txt文件

Python 之 读取txt文件

python 逐行读取文件的三种方法

100个 Unity实用技能| Unity读取本地文件(Json,txt等)的三种方法示例

100个 Unity实用技能| Unity读取本地文件(Json,txt等)的三种方法示例

100个 Unity实用技能☀️ | Unity读取本地文件(Json,txt等)的三种方法示例