Python中读取文件内容的代码可以使用以下方法:
open()
函数打开文件,并使用read()
方法读取文件内容:file = open('filename.txt', 'r')
content = file.read()
file.close()
with
语句自动关闭文件,并使用read()
方法读取文件内容:with open('filename.txt', 'r') as file:
content = file.read()
readlines()
方法逐行读取文件内容并存储为列表:with open('filename.txt', 'r') as file:
lines = file.readlines()
for
循环逐行读取文件内容:with open('filename.txt', 'r') as file:
for line in file:
# 处理每一行的内容
请注意,以上代码中的filename.txt
需要替换为实际的文件路径和文件名。另外,如果文件在其他目录下,需要提供完整的文件路径。