Answer:
To change the label to black text on a yellow background, you need to specify the foreground and background colors using the fg and bg attributes, respectively. Here's the updated code:
w = tk.Label(root, text="Movies", fg="black", bg="yellow")