第二章 用Python設計第一個遊戲[DDT書本學習 小甲魚]

2.1 主線:變量-分支-循環-條件-函數【BIF內置函數】 等常規
文字遊戲 猜數字
代碼 '''----第一個小遊戲---'''
temp=input("猜猜我地內心想的那一個數字?:")
guess=int(temp)
if guess==5:
print("你是我肚子裏地小蛔蟲麼?")
print("=======================")
else:
print("你猜錯了,個人內心想的是數字5")
print("遊戲結束,不玩了")
運行結果
猜猜我地內心想的那一個數字?:7
你猜錯了,個人內心想的是數字5
遊戲結束,不玩了
2.2 Python沒有大括號 採用縮進 很是精簡 有層次
2.3 BIF 內置函數
能夠用help()這個BIF用於查詢功能描述
代碼 help(print)
結果
Help on built-in function print in module builtins:
print(...)
print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between values, default a space.
end: string appended after the last value, default a newline.
flush: whether to forcibly flush the stream. app

相關文章
相關標籤/搜索