问题 I was wondering how I would add some sort of background text in the input box defined in the code attached here under: The box could say "Example: Joe Bloggs" but greyed out and then remove when the user clicks inside the box? Hope this isn't too tricky. # ************ Retrieve user's Full name ************ tk.Label(self, text='First and last name:').grid(sticky='e') # Label self.full_name_entry = tk.Entry(self, bg='white', width=30) # Entry box self.full_name_entry.grid(row=1, column=1, pady