Pretty easy way to hide your password when you input it in the console or terminal. I use Python 3.10. Pycharm Community, and pwinput package.
from pwinput import pwinput
usern = input('Username: ')
passw = pwinput('Password: ', '*')
print(usern, passw)
#shorts #programming #python