python tkinter的Label

Posted mghhz816

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python tkinter的Label相关的知识,希望对你有一定的参考价值。

from tkinter import *
window=Tk()
window.title("my first window")
window.geometry("500x300+200+200")
Lb=Label(window, text=你好!this is Tkinter,bg=green, font=(Arial, 12), width=30, height=2)
Lb.pack(side=RIGHT)
photo=PhotoImage(file=D:picture\008h.gif)
Lbi=Label(window,image=photo)
Lbi.pack(side=LEFT)
window.mainloop()

 注:tkinter支持gif格式,不支持jpg格式

以上是关于python tkinter的Label的主要内容,如果未能解决你的问题,请参考以下文章

python3.8 tkinter为啥title 没有用,求大神解答!代码如下

python用tkinter创建一个登录界面

python tkinter的Label

python如何用像素规定tkinter模块里label或button的大小

Python3 Tkinter 之 Label

Python tkinter 学习记录 --label 与 button