共计 417 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用 open()
函数来打开文件,然后使用 read()
或者 readlines()
方法来读取文件的内容。接着可以使用循环来遍历文件的内容。
以下是一个例子:
# 打开文件
with open("example.txt", "r") as file:
# 逐行读取文件内容
for line in file:
print(line)
如果想一次性读取文件的所有内容,可以使用 read()
方法:
# 打开文件
with open("example.txt", "r") as file:
# 读取文件内容
content = file.read()
print(content)
另外,如果想读取指定行数的内容,可以使用 readlines()
方法:
# 打开文件
with open("example.txt", "r") as file:
# 读取前 5 行内容
lines = file.readlines()[:5]
for line in lines:
print(line)
丸趣 TV 网 – 提供最优质的资源集合!
正文完