fromtkinterimport*window=Tk()# instantiate an instance of a tkinter window# Change the size of the windowwindow.geometry("420x420")# Change the title of the windowwindow.title("Bro Code First GUI Program")# Give it a favicon - I tried both True and False in the iconphoto stmt and # couldn't tell any difference.icon=PhotoImage(file="linux.png")window.iconphoto(True,icon)# change background color of windowwindow.config(background="#5cfcff")window.mainloop()# place window on computer screen and listen for events.