Answer
The correct syntax for creating a PhotoImage in Tkinter is as follows:
image = tk.PhotoImage(file="image/us.gif")
Work Step by Step
The file parameter should be passed as an argument to PhotoImage when creating a new instance of the class, as shown above.