您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
利用Python编写一个剪刀石头布小游戏?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
创建一个简单的单轮游戏版本,我们不执行正确的输入。
如果输入了无效的内容,则添加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编写一个剪刀石头布小游戏的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。