background_image = tk.PhotoImage(file = "C:\Users\Aanu\Desktop\Python\download.png"')
background_label = tk.Label(root, image = background_image)
background_label.place(relwidth=1, relheight=1)
There is no error with this and everything seems to be working fine but the image isn't showing
background_image = tk.PhotoImage(file = "C:\Users\Aanu\Desktop\Python\download.png"')
background_label = tk.Label(root, image = background_image)
background_label.place(relwidth=1, relheight=1)
There is no error with this and everything seems to be working fine but the image isn't showing