python tkinter txt 清除内容
时间: 2023-06-22 22:43:38 浏览: 112
用Python Tkinter写的连连看小游戏
5星 · 资源好评率100%
您可以使用Tkinter中Text组件的delete方法来清空文本内容。以下是一个简单的例子:
```python
import tkinter as tk
def clear_text():
text.delete('1.0', 'end')
root = tk.Tk()
text = tk.Text(root)
text.pack()
button = tk.Button(root, text='清除文本', command=clear_text)
button.pack()
root.mainloop()
```
在上面的例子中,我们创建了一个Text组件和一个Button组件。当点击Button时,它会调用clear_text函数来清空Text组件中的文本内容。在clear_text函数中,我们使用Text组件的delete方法来删除从第一行第一个字符('1.0')到文本末尾('end')的所有文本。这样就可以清空Text组件中的所有文本了。
阅读全文