我正在尝试读取末尾带有空行的文本文件,并且需要将这些行放入列表中。
文本文件如下所示:
这是第一行
这是第二行
*
(* 表示空行)
我像这样阅读文本文件:
read_str = file.readlines()
print(read_str)
它给了我想要的清单,这很好,但最后它说“无”。像这样:
['this is the first line\n', 'this is the second line\n']
None
为什么它最后给我“无”,我该如何解决这个问题?