TypeError: ExcelApp.save_file() missing 1 required positional argument: 'textbox'
时间: 2023-08-18 08:14:57 浏览: 226
Vue 报错TypeError: this.$set is not a function 的解决方法
5星 · 资源好评率100%
这个错误提示是因为在调用 `save_file()` 方法时,没有传入 `textbox` 参数,导致缺少一个必要的位置参数。
你需要在调用 `save_file()` 方法时,传入 `textbox` 参数,例如:
```python
app = ExcelApp()
# ... 其他代码 ...
text = "Hello, world!"
app.save_file("example.xlsx", textbox=text)
```
请注意确认 `textbox` 参数的类型和值是否正确。如果仍然存在问题,请提供更多上下文代码和错误信息,以便我更好地帮助你解决问题。
阅读全文