python
コード
import tkinter
root = tkinter.Tk()
root.title("画像表示")
canvas = tkinter.Canvas(root, width=400,height=600)
canvas.pack()
img = tkinter.PhotoImage(file="iroha.png")
canvas.create_image(200,300,image=img)
root.mainloop()
tkinterにiroha.pngを表示させたいです。
エラーメッセージ
AttributeError: partially initalized module 'tkinter' has no attibute 'Tk'(most likely due to a circular import)
試したこと
コードを調べ試す
補足情報(FW/ツールのバージョンなど)
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/22 06:03