python 读取文本每一行的简单实现


file_path = ""  # 文件路径
for line in open(file_path):
    print(line)  # 对每一行进行操作即可

 

你可能感兴趣的:(平时积累)