I'm able to bind a mouse action on a single entry widget, meaning, by default a value will be present in the entry box, if i click then the default will be removed. How would i do the same when loop is used over individual boxes. If i click on any entry box, the default value must be removed
from tkinter import *
root = Tk()
def hello(event):
ent.delete(0, END)
for x in range(4):
ent=Entry(root,fg="grey")
ent.insert(0, "dd/mm/yy")
ent.pack()
ent.bind('<Button-1>',hello)
root.minsize(400, 400)
root.mainloop()