文件的打开和关闭


1、打开文件使用open函数、关闭文件使用文件对象的close方法

file = open('test.txt', 'w')
# 对文件进行操作
file.close()

2、使用with语句简写文件的打开和关闭

with open('test.txt', 'w') as file:
    pass

3、指定编码

with open('test.txt', 'w', encoding='utf-8') as file:
    pass

results matching ""

    No results matching ""