I am new in python. so, I tried to show image in my tkinter project. But I continuously received this error. I searched for a lot of codes in Google but everything was out of my league.
###################################################
from tkinter import *
##################################################
StartScreen = Tk()
##Photo Car##
PhotoCarRed = PhotoImage(file="D:\Projects\Python\Practice\1.png")
PlacementPhotoCarRed = Label(StartScreen, image=PhotoCarRed)
PlacementPhotoCarRed.pack(side="top", fill=X)
Here is the error:
