如何隐藏玩家的输入

新手上路,请多包涵

我需要第二个用户看不到第一个用户的输入,但是当它告诉第二个用户输入时,第一个用户的输入就在他们面前

score=[0,0]
print("Welcome to Rock Paper Scissors! The score starts as",score)
while True:
    player1=input("Player 1's turn: ")
    player2=input("Player 2's turn: ")
    if (player1.lower() in ["rock","r","rick","rok","roc","rck"]):
        if (player2.lower() in ["scissors","s","scissor"]):
            score[0]=score[0]+1
            print("Player 1 wins! The score is now",score)
        if (player2.lower() in ["rock","r","rick","rok","roc","rck"]):
            print("It's a tie! The score remains",score)
        if (player2.lower() in ["paper","p","pap","piper"]):
            score[1]=score[1]+1
            print("Player 2 wins! The score is now",score)
    if (player1.lower() in ["scissors","s","scissor"]):
        if (player2.lower() in ["scissors","s","scissor"]):
            score[0]=score[0]+0
            print("It's a tie! The score remains",score)
        if (player2.lower() in ["rock","r","rick","rok","roc","rck"]):
            score[1]=score[1]+1
            print("Player 2 wins! The score is now",score)
        if (player2.lower() in ["paper","p","pap","piper"]):
            score[0]=score[0]+1
            print("Player 1 wins! The score is now",score)
    if (player1.lower() in ["paper","p","pap","piper"]):
        if (player2.lower() in ["scissors","s","scissor"]):
            score[1]=score[1]+1
            print("Player 2 wins! The score is now",score)
        if (player2.lower() in ["rock","r","rick","rok","roc","rck"]):
            score[0]=score[0]+1
            print("Player 1 wins! The score is now",score)
        if (player2.lower() in ["paper","p","pap","piper"]):
            score[0]=score[0]+0
            print("It's a tie! The score remains",score)
    print("N E X T    G A M E")

输出是:

 Player 1's turn: r
Player 2's turn:

现在,玩家 2 只需要用纸就可以赢得比赛,所以我需要隐藏玩家 1 输入的内容(我使用的是 Python 3.6.1)

原文由 Aidan Christopher 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 365
1 个回答

您可以在此处使用 getpass 来隐藏玩家 1 的输入并使用 input() 用于第二个玩家的输入。

 import getpass

player1 = getpass.getpass(prompt = "Player 1's turn:")
player2 = input("Player 2's turn")

原文由 bhansa 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题