Vscodeでpythonを使っています。エラーがあるときはプログラム作成中もしくは、実行時に表示されます。しかし、エラーが表示されないが、実行もされませんでした。引用テキストのような表示が出てきました。解決方法があれば教えていただきたいです。よろしくお願いします。
"C:/Users/ユーザーネーム/AppData/Local/Microsoft/WindowsApps/python3.9.exe" "c:/Users/ユーザーネーム/OneDrive/ドキュメント/como02/chap6.py"
python
1import tkinter 2 3#ウィンドウを作成 4root=tkinter.Tk() 5root.title("ダンジョン&パイソン") 6root.minsize(840,454) 7root.option_add("*font",["メサイオ",14]) 8#キャンパス作成 9canvas=tkinter.Canvas(width=620,height=434) 10canvas.place(x=10,y=10) 11canvas.create_rectangle(0,0,620,434,fill="gray") 12 13#画像データ読み込み 14images=[tkinter.PhotoImage(file="img6/chap6-mapfield.png"), 15 tkinter.PhotoImage(file="img6/chap6-mapwall.png"), 16 tkinter.PhotoImage(file="img6/chap6-mapgoal.png"), 17 tkinter.PhotoImage(file="img6/chap6-mapkey.png"), 18 tkinter.PhotoImage(file="img6/chap6-mapman.png")] 19 20root.mainloop 21
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/08 09:52