如何在我的 python 程序中设置密码以显示为星号 [重复]
Posted
技术标签:
【中文标题】如何在我的 python 程序中设置密码以显示为星号 [重复]【英文标题】:how do i make a password in my python program to be shown as asterisk [duplicate] 【发布时间】:2018-02-09 11:04:10 【问题描述】:def logInOkay():
print("You must login before proceeding")
userId = input("User ID")
userPw = input("Password")
if (userId=="Mr Leeman") and (userPw=="Treeroad!"):
return True
else:
print("Error in userId or password")
return False
我需要能够进入(treeroad!),但需要将其隐藏并替换为星号。
【问题讨论】:
类似:***.com/questions/35805078/… 【参考方案1】:您需要使用 getch() 而不是 input()。
请参阅this 帖子上的答案。
【讨论】:
以上是关于如何在我的 python 程序中设置密码以显示为星号 [重复]的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Python 中设置一个通用选项以在任何地方只显示 N 位数字?