python

python里的open()函数怎么使用

小亿
88
2024-08-23 02:13:29
栏目: 编程语言

在Python中,open()函数用于打开文件,并返回文件对象。其基本语法如下:

open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None)

其中,参数含义如下:

示例:

# 打开文件并读取内容
with open('example.txt', 'r') as file:
    content = file.read()
    print(content)

# 打开文件并写入内容
with open('example.txt', 'w') as file:
    file.write('Hello, World!')

0
看了该问题的人还看了