I want to encrypt a piece of text, like if someone where to type in their password it would come up with stars or the dots I'm using tkinter if that matters. in the entry part can the users password be encrypted?
w2 = Label(root, text="Password")
w2.pack()
e1 = Entry(root)
e1.pack()