text.delete(1.0,Tkinter。結束)
設置Python Tknintertext控件文本的另壹種方法:
text.insert(index,string)?形式為index = x.y,其中x代表行,y代表列。
將數據插入第壹行text.insert (1.0,“hello world”)。
擴展數據:
第壹個Tkinter程序
# File: Hello1 py
來自Tkinter import *
root = Tk()
w = Label(root,text="Hello,world!")
包裝()
root.mainloop()
在命令行上運行它,如下所示:
將顯示$ python Hello1 py下方的窗口。
案例代碼(Python3.x)
來自tkinter import *
root = Tk()
#您的用戶界面代碼
Label(root,text = 'hello world!').包裝()
root.mainloop()