当前位置:主页 > 软件编程 > Python代码 >

对python Tkinter Text的用法详解

时间:2020-10-03 10:15:20 | 栏目:Python代码 | 点击:

1.设置python Tkinter Text控件文本的方法

text.insert(index,string)  index = x.y的形式,x表示行,y表示列

向第一行插入数据,text.insert(1.0,'hello world')

2.清空python Tkinter Text控件文本的方法

#思路:从第一行清除到最后一行   

text.delete(1.0,Tkinter.END)

您可能感兴趣的文章:

相关文章