file.write 用法
时间: 2023-12-14 18:02:18 浏览: 146
logging+ filewrite.rar
file.write() 是 Python 中用于向文件中写入数据的方法。它的用法如下:
```python
file.write(str)
```
其中,file 是一个打开的文件对象,str 是要写入文件的字符串。
示例:
```python
# 打开文件,如果不存在则创建
file = open("test.txt", "w")
# 写入数据
file.write("Hello World!")
# 关闭文件
file.close()
```
上述代码会在当前目录下创建一个名为 test.txt 的文件,并将字符串 "Hello World!" 写入该文件中。如果该文件已存在,则会覆盖原有内容。
阅读全文