久久福利_99r_国产日韩在线视频_直接看av的网站_中文欧美日韩_久久一

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

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 編程
相關文章:
主站蜘蛛池模板: 亚洲国产精品福利 | 免费国产黄网站在线观看视频 | 黄网站免费在线 | 国产精品99久久久久久久久久久久 | 欧美日韩成人一区 | a一级黄| 日韩在线视频观看 | 久久网站免费视频 | www.788.com色淫免费 | 日韩欧美一级二级 | www.日本精品 | 亚洲人成网站999久久久综合 | 国产精品欧美久久久久一区二区 | 婷婷色国产偷v国产偷v小说 | 人人看人人干 | 欧美日韩精品一区二区三区 | 精品国产高清一区二区三区 | 亚洲免费av片 | av在线成人 | 国产自在现线2019 | 色www精品视频在线观看 | 亚洲免费在线观看视频 | 亚洲精品一区二区三区 | 免费在线观看国产 | 亚洲免费影院 | 国产精品视频 | 精久久 | 91欧美在线 | 夜久久 | 国产免费天天看高清影视在线 | 尹人成人| 国产精品久久久久久久久 | 91看片网| 久久亚洲国产精品 | 中文字幕在线欧美 | 国产一区亚洲二区三区 | 国产一区二区在线观看视频 | 国产精品久久久久久久久小说 | 免费午夜电影 | 高清免费av | 欧美一级片免费看 |