重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
利用Python编写一个剪刀石头布小游戏?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
成都创新互联公司于2013年创立,是专业互联网技术服务公司,拥有项目成都网站建设、网站建设网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元东平做网站,已为上家服务,为东平各地企业和个人服务,联系电话:13518219792创建一个简单的单轮游戏版本,我们不执行正确的输入。
如果输入了无效的内容,则添加while循环可重新提示用户输入选择。
使用while循环让用户反复播放,并使用变量来跟踪得分。
import random input("Welcome to Rock, Paper, Scissors! Press Enter to start.") print() user_wins = 0 computer_wins = 0 choices = ["rock", "paper", "scissors"] while True: random_index = random.randint(0,2) cpu_choice = choices[random_index] user_choice = input("Rock, Paper, or Scissors? ").lower() while user_choice not in choices: user_choice = input("That is not a valid choice. Please try again: ").lower() print() print("Your choice:", user_choice) print("Computer's choice:", cpu_choice) print() if user_choice == 'rock': if cpu_choice == 'rock': print("It's a tie!") elif cpu_choice == 'scissors': print("You win!") user_wins+=1 elif cpu_choice == 'paper': print("You lose!") computer_wins+=1 elif user_choice == 'paper': if cpu_choice == 'paper': print("It's a tie!") elif cpu_choice == 'rock': print("You win!") user_wins+=1 elif cpu_choice == 'scissors': print("You lose!") computer_wins+=1 elif user_choice == 'scissors': if cpu_choice == 'scissors': print("It's a tie!") elif cpu_choice == 'paper': print("You win!") user_wins+=1 elif cpu_choice == 'rock': print("You lose!") computer_wins+=1 print() print("You have "+str(user_wins)+" wins") print("The computer has "+str(computer_wins)+" wins") print() repeat = input("Play again? (Y/N) ").lower() while repeat not in ['y', 'n']: repeat = input("That is not a valid choice. Please try again: ").lower() if repeat == 'n': break print("\n----------------------------\n")
看完上述内容,你们掌握利用Python编写一个剪刀石头布小游戏的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注创新互联行业资讯频道,感谢各位的阅读!