python输入密码的判断
时间: 2023-07-26 15:05:57 浏览: 75
python字符串判断密码强弱
你可以使用 `getpass` 模块来输入密码。下面是一个示例代码:
```python
import getpass
password = getpass.getpass("Enter your password: ")
if password == "my_secret_password":
print("Access granted")
else:
print("Access denied")
```
在上面的代码中,`getpass.getpass` 函数会提示用户输入密码,但是不会将密码显示在终端上。如果输入的密码和预设的密码相同,则输出 "Access granted",否则输出 "Access denied"。
注意:上述示例代码中的密码比较简单,实际使用时应该使用更复杂的密码,并且不要将密码明文存储在代码中。
阅读全文