当前位置:主页 > 软件编程 > Python代码 >
时间: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)