This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
import tkinter as tk
root = tk.Tk()
photo = tk.PhotoImage(file='images\\BJoker.gif') #创建一个图片对象
textLabel = tk.Label(root,
text='一张牌',
justify = LEFT, #定义多行文本如何对齐。可取值有:LEFT, RIGHT, 或 CENTER
image=photo) #设置标签图片
textLabel.pack()
root.mainloop()