对python Tkinter Text的用法详解

时间:2021-12-10 19:30:09

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)

以上这篇对python Tkinter Text的用法详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/CosmopolitanMe/article/details/53495645