Python获取文件的全部内容
示例
文件I / O的首选方法是使用with关键字。这将确保在完成读取或写入后关闭文件句柄。
with open('myfile.txt') as in_file:content = in_file.read()
print(content)
或者,要手动关闭文件,您可以放弃with并简单地自称close:
in_file = open('myfile.txt', 'r')content = in_file.read()
print(content)
in_file.close()
请记住,如果不使用with语句,则可能会意外打开文件,以防出现意外的异常,如下所示:
in_file = open('myfile.txt', 'r')raise Exception("oops")
in_file.close() # 这将永远不会被称为
以上是 Python获取文件的全部内容 的全部内容, 来源链接: utcz.com/z/330657.html