python读取大文件的好办法```with open(log_path, "r", encoding="utf-8") as fr: for line in fr: # 笔记: Pythonic 读取大文件的方式 pass```