python3-交互時隱藏輸入的密碼
- 2020 年 1 月 9 日
- 筆記
# Auther: Aaron Fan #這個腳本請在命令行去執行才可以試出效果,pycharm這裡無法測試這個腳本,切記! import getpass _username = "Aaron" _passwd = "abc,123" username = input("請輸入你的用戶名: ") #getpass這個模組可以幫助你輸入密碼時把密碼隱藏 passwd = getpass.getpass("請輸入你的密碼: ") if username == _username and passwd == _passwd: print("你的用戶名密碼輸入正確。") else: print("你的用戶名或者密碼錯誤!")