代码:f.write("%s",content) ,报错为:TextIOWrapper.write() takes exactly one argument (2 given)
时间: 2023-09-10 22:15:15 浏览: 214
Caused by: android.system.ErrnoException: write failed: ENOSPC (
这个错误的原因是 `write()` 方法只接受一个参数,但是你给了两个参数。你需要把参数传递给 `write()` 方法的方式改为:
```python
f.write(content)
```
或者使用类似于 `print()` 函数的格式化字符串的方式:
```python
f.write("%s" % content)
```
这两种方式都只传递一个参数给 `write()` 方法。
阅读全文