I want to mask my keyboard input with a character such as an asterisk on Python version 3 and above on a windows operating system,
I have this so far,
import getpass
pswd = getpass.getpass('Password:')
I can hide the password input, but I am not able to display a character for each individual letter
I tried using msvcrt module, but an error saying no module name 'msvcrt' keeps popping up, probably because i have Python version 3 and above. I also don't want to use tKinter either.