久久精品国产亚洲高清|精品日韩中文乱码在线|亚洲va中文字幕无码久|伊人久久综合狼伊人久久|亚洲不卡av不卡一区二区|精品久久久久久久蜜臀AV|国产精品19久久久久久不卡|国产男女猛烈视频在线观看麻豆

千鋒教育-做有情懷、有良心、有品質的職業(yè)教育機構

手機站
千鋒教育

千鋒學習站 | 隨時隨地免費學

千鋒教育

掃一掃進入千鋒手機站

領取全套視頻
千鋒教育

關注千鋒學習站小程序
隨時隨地免費學習課程

當前位置:首頁  >  技術干貨  > 用Python開發(fā)一個簡單的猜數字游戲

用Python開發(fā)一個簡單的猜數字游戲

來源:千鋒教育
發(fā)布人:xqq
時間: 2023-11-07 05:38:44 1699306724

本文介紹如何使用Python制作一個簡單的猜數字游戲。

游戲規(guī)則

玩家將猜測一個數字。如果猜測是正確的,玩家贏。如果不正確,程序會提示玩家所猜的數字與實際數字相比是“大(high)”還是“小(low)”,如此往復直到玩家猜對數字。

準備好Python3

首先,需要在計算機上安裝Python??梢詮腜ython官網下載并安裝。本教程需要使用最新版的Python3(版本3.x.x)。

確保選中將Python添加到PATH變量的框。如果不這樣做,將很難運行該程序。

現在,在設備上打開文本/代碼編輯器。就個人而言,我偏好使用Brackets。Windows上預裝了Notepad,MacOS包含TextEdit,而Linux用戶可以使用Vim。

打開文本編輯器后,保存新文件。我將它命名為main.py,但你可以隨意命名,只要它以.py結尾即可。

編碼

本教程的說明將作為注釋包含在代碼中。在Python中,注釋以#開頭并一直持續(xù)到行結束。

fromkeras.layersimportConv2D,MaxPooling2D,GlobalAveragePooling2D

#First,weneedtoimportthe'random'module.

#Thismodulecontainsthefunctionalityweneedtobeabletorandomlyselectthewinningnumber.

importrandom

#Now,weneedtoselectarandomnumber.

#Thislinewillsetthevariable'correct'tobeequaltoarandomintegerbetween1and10.

correct=random.randint(1,10)

#Let'sgettheuser'sfirstguessusingthe'input'function.

guess=input("Enteryourguess:")

#Rightnow,theuser'sinputisformattedasastring.

#Wecanformatitasanintegerusingthe'int'function.

guess=int(guess)

#Let'sstartaloopthatwillcontinueuntiltheuserhasguessedcorrectly.

#Wecanusethe'!='operatortomean'notequal'.

whileguess!=correct:

#Everythinginthisloopwillrepeatuntiltheuserhasguessedcorrectly.

#Let'sstartbygivingtheuserfeedbackontheirguess.Wecandothisusingthe'if'statement.

#Thisstatementwillcheckifacomparisonistrue.

#Ifitis,thecodeinsidethe'if'statementwillrun.

ifguess>correct:

#Thiscodewillruniftheuserguessedtoohigh.

#Wecanshowamessagetotheuserusingthe'print'function.

print("You'veguessedtoohigh.Tryguessinglower.")

else:

#The'else'statementaddsontoan'if'statement.

#Itwillruniftheconditionofthe'if'statementisfalse.

#Inthiscase,itwillruniftheuserguessedtoolow,sowecangivethemfeedback.

print("You'veguessedtoolow.Tryguessinghigher.")

#Nowweneedtolettheuserguessagain.

#NoticehowIamcombiningthetwolinesofguessingcodetomakejustoneline.

guess=int(input("Enteryourguess:"))

#Ifauser'sguessisstillincorrect,thecodeinthe'while'loopwillberepeated.

#Ifthey'vereachedthispointinthecode,itmeanstheyguessedcorrectly,solet'ssaythat.

print("Congratulations!You'veguessedcorrectly.")

此外,可以隨意更改程序中的任何內容。

例如,可以將正確的數字設置為1到100而不是1到10,可以更改程序在print()函數中所說的內容。你的代碼想怎么寫都可以。

運行程序

根據你的操作系統(tǒng),打開命令提示符(Windows/Linux)或終端(Mac)。按順序嘗試以下每個命令。如果正確安裝Python,其中至少有一個應該可以運行。

pythonC:/Users/username/Desktop/main.py

pyC:/Users/username/Desktop/main.py

python3C:/Users/username/Desktop/main.py

確保將C:/Users/username/Desktop/main.py替換為Python文件的完整路徑。

程序運行后,可測試一下,玩幾次!完成操作后,按向上箭頭鍵復制最后一個命令,然后按Enter即可再次運行。

以下是沒有任何注釋的代碼版本:

importrandom

correct=random.randint(1,10)

guess=input("Enteryourguess:")

guess=int(guess)

whileguess!=correct:

ifguess>correct:

print("You'veguessedtoohigh.Tryguessinglower.")

else:

print("You'veguessedtoolow.Tryguessinghigher.")

guess=int(input("Enteryourguess:"))

print("Congratulations!You'veguessedcorrectly.")

以上內容為大家介紹了用Python開發(fā)一個簡單的猜數字游戲,希望對大家有所幫助,如果想要了解更多Python相關知識,請關注IT培訓機構:千鋒教育。http://m.2667701.com/

tags: python培訓
聲明:本站稿件版權均屬千鋒教育所有,未經許可不得擅自轉載。
10年以上業(yè)內強師集結,手把手帶你蛻變精英
請您保持通訊暢通,專屬學習老師24小時內將與您1V1溝通
免費領取
今日已有369人領取成功
劉同學 138****2860 剛剛成功領取
王同學 131****2015 剛剛成功領取
張同學 133****4652 剛剛成功領取
李同學 135****8607 剛剛成功領取
楊同學 132****5667 剛剛成功領取
岳同學 134****6652 剛剛成功領取
梁同學 157****2950 剛剛成功領取
劉同學 189****1015 剛剛成功領取
張同學 155****4678 剛剛成功領取
鄒同學 139****2907 剛剛成功領取
董同學 138****2867 剛剛成功領取
周同學 136****3602 剛剛成功領取
相關推薦HOT