求助Python中的TkinterText的用法?
1.設(shè)置python Tkinter Text控件文本的方法
text.insert(index,string) index = x.y的形式,x表示行,y表示列
向第一行插入數(shù)據(jù),text.insert(1.0,'hello world')
2.清空python Tkinter Text控件文本的方法
#思路:從第一行清除到最后一行
text.delete(1.0,Tkinter.END)
求助Python中的TkinterText的用法?
1.設(shè)置python Tkinter Text控件文本的方法
text.insert(index,string) index = x.y的形式,x表示行,y表示列
向第一行插入數(shù)據(jù),text.insert(1.0,'hello world')
2.清空python Tkinter Text控件文本的方法
#思路:從第一行清除到最后一行
text.delete(1.0,Tkinter.END)