Look, no one has been answering my question properly and are duplicating my previous question as I was not clear on my previous question
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 pop, probably because i have Python version 3 and above. I also don't want to use tKinter either.
If anyone can help by adding a few lines of code to fix this would be a great help, as it is for my computer science coursework