共计 452 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用 open()
函数打开文件,并使用 readlines()
方法读取文件的所有行,然后通过索引来获取第 n 行。下面是一个简单的示例:
def read_line(file_path, n):
with open(file_path, 'r') as file:
lines = file.readlines()
if n <= len(lines):
return lines[n-1]
else:
return "Line does not exist."
file_path = 'example.txt' # 文件路径
line_number = 3 # 第 3 行
line = read_line(file_path, line_number)
print(line)
请将 file_path
替换为你要读取的文件的路径,将 line_number
替换为你要读取的行数。运行代码后,将会打印出第 n 行的内容。如果指定的行数超过文件的总行数,则会打印出 "Line does not exist."。
丸趣 TV 网 – 提供最优质的资源集合!
正文完