AttributeError: '_tkinter.tkapp' object has no attribute 'updata'
时间: 2023-11-19 07:07:22 浏览: 144
AttributeError: module 'tensorflow.compat.v1' has no attribute '
AttributeError: '_tkinter.tkapp' object has no attribute 'updata'这个错误提示意味着你正在尝试在Tkinter应用程序对象上调用一个名为'updata'的方法,但是该方法不存在。正确的方法名可能是'update'而不是'updata'。请检查你的代码并确保正确拼写了方法名。
以下是一个例子,演示了如何在Tkinter应用程序对象上调用'update'方法:
```python
import tkinter as tk
root = tk.Tk()
root.title("My App")
# do some stuff here
root.update() # update the GUI
root.mainloop()
```
阅读全文