CHONE_2Sc = tk.Tk()
FstAlien = ImageTk.PhotoImage(Image.open("alien.jpg"))
FstAlLabel = tk.Label(image=FstAlien)
FstAlien.show(command= "display")
FstAlien.pack()
CHONE_2Sc. configure(background="lime")
CHONE_2Sc.title("ROCK,PAPERS,SCISSORS")
Object = tk.Entry()
Object.grid(row=100, column=100)
Object.insert(0, "Enter your object: ")
Object.get()
In the review questions already on Stack Overflow to see if your question is a duplicate. There was a post that said that if you're using Mac, .open will show the image. On unix, display, fim and something else would do it. But on windows he didn't specify that much or I didn't understand that much.