亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

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

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

瀏覽:9日期: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 編程
相關文章:
主站蜘蛛池模板: 国产精品久久久久久久久久免费 | 蜜桃臀在线成人亚洲 | 成人性色生活片免费看爆迷你毛片 | 国产福利合集 | 在线高清一级欧美精品 | 欧美精品午夜毛片免费看 | 经典香港一级a毛片免费看 春水堂在线 | 国产 日韩 欧美 亚洲 | 国产成人一区二区三区视频免费 | 免费看成人国产一区二区三区 | 国产精品搭讪系列在线观看 | 国产激情一区二区三区成人91 | 青青青网 | 国产国语特级一级aa毛片 | 妞干网在线视频 | 视频一区 精品自拍 | 色成人亚洲 | 亚洲日韩欧美视频 | 91精品国产爱久久久久久 | 高清在线精品一区二区 | 青青草国产免费一区二区 | 日本中文字幕一区 | 亚洲国产精品va在线观看麻豆 | 手机看片日韩日韩韩 | 成人看片黄a免费看视频 | 国产美女亚洲精品久久久综合91 | 黄色一级一级片 | 国产日韩欧美视频在线 | 一级α一级α片免费观看网站 | 午夜性a一级毛片 | 日本免费高清一区 | 欧美一级特黄aa大片在线观看免费 | 亚洲一区亚洲二区亚洲三区 | 国产一级黄色片子 | 国产高清美女一级a毛片久久w | 欧美在线性视频 | 99色在线播放 | 91免费国产高清在线 | 日韩精品在线观看免费 | 特级黄色一级片 | 国产精品毛片天天看片 |