apassword entering with tkinter code example
Example 1: how to receive password using tkinter entry
from tkinter import *
master = Tk()
password = Entry(master, show = '*').pack()
...
Example 2: python tkinter entry hide text
widget = Entry(parent, show="*", width=15)