python中tkinter设置文本框内容
时间: 2023-10-19 16:04:02 浏览: 85
Python and Tkinter Programming.pdf
5星 · 资源好评率100%
要设置文本框的内容,可以使用`insert`方法或`delete`方法。
使用`insert`方法可以在指定位置插入文本,例如:
```python
text.insert('end', 'Hello, world!')
```
这会在文本框的末尾插入字符串`Hello, world!`。
使用`delete`方法可以删除指定位置的文本,例如:
```python
text.delete(1.0, 'end')
```
这会删除从第一行第0列到末尾的所有文本。
完整的示例代码如下:
```python
from tkinter import *
root = Tk()
text = Text(root)
text.pack()
text.insert('end', 'Hello, world!')
# 删除前面插入的文本
text.delete(1.0, 'end')
root.mainloop()
```
阅读全文