久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術(shù)文章
文章詳情頁

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

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

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制作簡單的剪刀石頭布游戲的詳細內(nèi)容,更多關(guān)于Python 剪刀石頭布游戲的資料請關(guān)注好吧啦網(wǎng)其它相關(guān)文章!

標簽: Python 編程
相關(guān)文章:
主站蜘蛛池模板: 德阳市| 锦屏县| 马关县| 图木舒克市| 惠水县| 个旧市| 光山县| 武宁县| 深泽县| 昂仁县| 漠河县| 敦煌市| 康保县| 玉林市| 屏边| 蒙城县| 连州市| 灵丘县| 无锡市| 鹤壁市| 拉萨市| 基隆市| 沽源县| 乌鲁木齐市| 宁国市| 准格尔旗| 广州市| 绍兴县| 太湖县| 河西区| 疏附县| 天津市| 昭苏县| 汉阴县| 荔浦县| 周宁县| 拉孜县| 霍邱县| 比如县| 三河市| 太康县|