在Python中,open()函數(shù)用于打開文件,并返回文件對象。其基本語法如下:
open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None)
其中,參數(shù)含義如下:
示例:
# 打開文件并讀取內(nèi)容
with open('example.txt', 'r') as file:
content = file.read()
print(content)
# 打開文件并寫入內(nèi)容
with open('example.txt', 'w') as file:
file.write('Hello, World!')