香港服务器如何使用python读取文件

已关闭留言

香港服务器使用python读取文件的方法:1.使用open方式逐行读取;2.使用with方式逐行读取;3.使用read()函数读取文件的全部内容;

具体方法如下:

1.使用open方式逐行读取文件

# 打开文件

f = open(“file.txt”, “r”)

print (“文件名为: “, f.name)

for line in fo.readlines():

ine = line.strip()

print (“读取的数据为: %s” % (line))

# 关闭文件

fo.close()

2.使用with方式逐行读取文件

with open(“file.txt”) as lines:

for line in lines:

print(line)

3.使用read()函数读取文件的全部内容

with open(‘file.txt’, ‘r’) as f:

print(f.read())