I am trying to code a login window using Tkinter but I\'m not able to hide the password text in asterisk format. This means the password entry is plain text, which has to be
widget-name = Entry(parent,show="*")
You can also use a bullet symbol:
bullet = "\u2022" #specifies bullet character widget-name = Entry(parent,show=bullet)#shows the character bullet