说说在 Python 中,如何读取文件中的数据
1 一次性读取我们想要读取《傲慢与偏见》txt 小说(为简化例子,我们的 txt 只包含一段文字):file = 'novel.txt'with open(file) as file_object: contents = file_object.read() print(contents)复制代码运行结果:It is a truth universally ackno...