国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術文章
文章詳情頁

Python制作簡單的剪刀石頭布游戲

瀏覽:13日期:2022-07-02 15:38:49
關于程序相關的 您可以反復玩游戲,直到選擇停止為止。 該程序跟蹤獲勝情況。 大小寫無關緊要(即ROCK與Rock相同)。 如果您輸入的內容無效,程序會一直提示您,直到您輸入有效的內容。對項目進行編碼的步驟: 創建一個簡單的單輪游戲版本,我們不執行正確的輸入。 如果輸入了無效的內容,則添加while循環可重新提示用戶輸入選擇。 使用while循環讓用戶反復播放,并使用變量來跟蹤得分。程序代碼

import randominput('Welcome to Rock, Paper, Scissors! Press Enter to start.')print()user_wins = 0computer_wins = 0choices = ['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制作簡單的剪刀石頭布游戲

以上就是Python制作簡單的剪刀石頭布游戲的詳細內容,更多關于Python 剪刀石頭布游戲的資料請關注好吧啦網其它相關文章!

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 中文国产成人精品久久一 | 国产 高清 在线 | 国产成人精品一区 | 午夜欧美日韩在线视频播放 | 欧美另类丝袜 | 久久亚洲国产成人影院 | 日韩美女毛片 | 欧美黑人性xxx猛交 欧美很黄视频在线观看 | 精品久久久久久久久久久 | 日韩欧美中文字幕在线播放 | 欧美三级观看 | 毛片免费在线 | 日韩一区二区天海翼 | 日本免费不卡在线一区二区三区 | 日韩国产在线观看 | 日韩中文字幕在线观看 | 日韩欧美一级毛片视频免费 | 日韩欧美在线一级一中文字暮 | 国产香蕉成人综合精品视频 | 99视频在线永久免费观看 | 成人影院vs一区二区 | 国产一极毛片 | 日本久久久久久久久久 | 免费视频日本 | 国产精品综合一区二区 | 国产精品黑丝 | 91国语精品自产拍在线观看一 | 日韩一区二区不卡中文字幕 | 91国语精品自产拍在线观看一 | 天堂一区二区三区精品 | 精品小视频在线观看 | 欧美一级带 | 中文字幕在线精品 | 久草热线视频 | 久久狠狠躁免费观看2020 | 国内精品伊人久久久久妇 | 色拍自拍亚洲综合在线 | 国产乱子伦视频大全 | 99在线热播精品免费 | 男女扒开双腿猛进入爽爽视频 | 波多野结衣在线看片 |