Easy Hide Password Input in Python

preview_player
Показать описание
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
Рекомендации по теме
Комментарии
Автор

Quick and useful, more of these videos (y)

fouratbendriaa
Автор

modulenotfound error: no module named "pwinput"

lambsystems
Автор

# here is code for normal

Usser = input("username: ")
Passw = input("password: ")
Print(usser, passw)

mustafaansari
visit shbcf.ru