I wonder if there is a way to mask character entry in input()
of python.
Ex:
Senha = 1234
Entrada = int(input("Digite sua senha: "))
In the above entry I wanted to change the letters entered by asterisks.
Is there any way to do this in python?