#text插入图片
from tkinter import * master=Tk() text=Text(master,width=50,height=50)
text.pack() photo=PhotoImage(file='/Users/wangguangjie/Downloads/fishc.gif')
def show():
text.image_create(END,image=photo) b = Button(master,text='插入图片',command=show)
#INSERT索引表示插入光标当前的位置
text.window_create(INSERT,window=b) mainloop()