在线观看不卡亚洲电影_亚洲妓女99综合网_91青青青亚洲娱乐在线观看_日韩无码高清综合久久

鍍金池/ 教程/ Python/ exercise35.分支和函數(shù)
附錄 A-練習(xí) 9:生成一個(gè)空文件(Touch, New-Item)
附錄 A-練習(xí) 10:復(fù)制文件 (cp)
exercise44.繼承 Vs.包含
附錄 A-練習(xí) 14:刪除文件 (rm)
附錄 A-練習(xí) 11:移動(dòng)文件 (mv)
exercise46.項(xiàng)目骨架
附錄 A-練習(xí) 3:如果你迷路了
exercise37.復(fù)習(xí)符號(hào)
exercise47.自動(dòng)化測(cè)試
exercise3.數(shù)字和數(shù)學(xué)計(jì)算
附錄 A-練習(xí) 1:安裝
exercise32.循環(huán)和列表
exercise31.做出決定
exercise42.對(duì)象、類、以及從屬關(guān)系
exercise48.更復(fù)雜的用戶輸入
下一步
簡(jiǎn)介
附錄 A-練習(xí) 7:刪除路徑 (rmdir)
exercise49.寫代碼語句
exercise18.命名, 變量, 代碼, 函數(shù)
exercise12.提示別人
exercise14.提示和傳遞
exercise40.模塊, 類和對(duì)象
附錄 A-練習(xí) 12:查看文件 (less, MORE)
exercise9.打印, 打印, 打印
exercise13.參數(shù), 解包, 變量
exercise30. Else 和 If
exercise28. 布爾表達(dá)式
附錄 A-練習(xí) 4:創(chuàng)建一個(gè)路徑 (mkdir)
附錄 A-練習(xí) 15:退出命令行 (exit)
exercise25. 更多更多的練習(xí)
exercise6.字符串和文本
exercise2.注釋和井號(hào)“#”
exercise21. 函數(shù)的返回值
附錄 A-下一步
exercise1.第一個(gè)程序
exercise23. 閱讀代碼
附錄 A-練習(xí) 5:改變當(dāng)前路徑 (cd)
exercise17.更多文件操作
exercise24. 更多的練習(xí)
exercise19.函數(shù)和變量
exercise51.從瀏覽器獲取輸入
exercise22. 到目前為止你學(xué)到了什么?
exercise41.學(xué)會(huì)說面向?qū)ο?/span>
exercise52.開始你的 web 游戲
exercise20. 函數(shù)和文件
exercise15.讀文件
exercise45.你來制作一個(gè)游戲
exercise10.那是什么?
exercise8.打印, 打印
exercise35.分支和函數(shù)
exercise26. 恭喜你,可以進(jìn)行一次考試了
exercise33.while 循環(huán)
exercise29. IF 語句
exercise36.設(shè)計(jì)和調(diào)試
exercise0.安裝和準(zhǔn)備
exercise50.你的第一個(gè)網(wǎng)站
附錄 A-練習(xí) 2:路徑, 文件夾, 名錄 (pwd)
exercise38.列表操作
附錄 A-練習(xí) 6:列出當(dāng)前路徑 (ls)
exercise16.讀寫文件
exercise4.變量和命名
exercise34.訪問列表元素
exercise11.提問
exercise43.基本的面向?qū)ο蟮姆治龊驮O(shè)計(jì)
附錄 A-簡(jiǎn)介
附錄 A-練習(xí) 8:目錄切換(pushd, popd)
來自老程序員的建議
exercise27. 記住邏輯
exercise5.更多的變量和打印
exercise7.更多的打?。ㄝ敵觯?/span>
附錄 A-練習(xí) 13:輸出文件 (cat)
exercise39.字典,可愛的字典

exercise35.分支和函數(shù)

你已經(jīng)學(xué)會(huì)了 if 語句、函數(shù)、還有列表?,F(xiàn)在你要練習(xí)扭轉(zhuǎn)一下思維了。把下面的代碼寫下來,看你是否能弄懂它實(shí)現(xiàn)的是什么功能。

from sys import exit

def gold_room():
    print "This room is full of gold.  How much do you take?"

    choice = raw_input("> ")
    if "0" in choice or "1" in choice:
        how_much = int(choice)
    else:
        dead("Man, learn to type a number.")

    if how_much < 50:
        print "Nice, you're not greedy, you win!"
        exit(0)
    else:
        dead("You greedy bastard!")

def bear_room():
    print "There is a bear here."
    print "The bear has a bunch of honey."
    print "The fat bear is in front of another door."
    print "How are you going to move the bear?"
    bear_moved = False

    while True:
        choice = raw_input("> ")

        if choice == "take honey":
            dead("The bear looks at you then slaps your face off.")
        elif choice == "taunt bear" and not bear_moved:
            print "The bear has moved from the door. You can go through it now."
            bear_moved = True
        elif choice == "taunt bear" and bear_moved:
            dead("The bear gets pissed off and chews your leg off.")
        elif choice == "open door" and bear_moved:
            gold_room()
        else:
            print "I got no idea what that means."

def cthulhu_room():
    print "Here you see the great evil Cthulhu."
    print "He, it, whatever stares at you and you go insane."
    print "Do you flee for your life or eat your head?"

    choice = raw_input("> ")

    if "flee" in choice:
        start()
    elif "head" in choice:
        dead("Well that was tasty!")
    else:
        cthulhu_room()

def dead(why):
    print why, "Good job!"
    exit(0)

def start():
    print "You are in a dark room."
    print "There is a door to your right and left."
    print "Which one do you take?"

    choice = raw_input("> ")

    if choice == "left":
        bear_room()
    elif choice == "right":
        cthulhu_room()
    else:
        dead("You stumble around the room until you starve.")

start()

你看到的結(jié)果

這是我玩這個(gè)游戲的過程:

$ python ex35.py
You are in a dark room.
There is a door to your right and left.
Which one do you take?
>  left
There is a bear here.
The bear has a bunch of honey.
The fat bear is in front of another door.
How are you going to move the bear?
>  taunt bear
The bear has moved from the door. You can go through it now.
>  open door
This room is full of gold.  How much do you take?
>  1000
You greedy bastard! Good job!

附加題

1.把這個(gè)游戲的地圖畫出來,把自己的路線也畫出來。 2.改正你所有的錯(cuò)誤,包括拼寫錯(cuò)誤。 3.為你不懂的函數(shù)寫注釋。 4.為游戲添加更多元素。通過怎樣的方式可以簡(jiǎn)化并且擴(kuò)展游戲的功能呢? 5.這個(gè) gold_room 游戲使用了奇怪的方式讓你鍵入數(shù)字。這種方式會(huì)導(dǎo)致什么樣的 bug? 你可以用比檢查 0、1 更好的方式判斷輸入是否是數(shù)字嗎?int() 這個(gè)函數(shù)可以給你一些頭緒。

常見問題

Q: 求助!這個(gè)程序是怎樣運(yùn)行的?

當(dāng)你理解一段代碼遇到困難的時(shí)候,可以給每一行代碼加上一段簡(jiǎn)單的注釋用來解釋每一句實(shí)現(xiàn)什么功能。盡量使你的注釋短小且與代碼近似.然后用圖解或者寫一段描述來弄懂代碼是如何工作的。如果你這么做了,你就能弄明白這段代碼是如何工作的。

Q: 你為什么用了 while True?

這么寫可以創(chuàng)建一個(gè)無限循環(huán)

Q: exit()是干什么的?

在許多操作系統(tǒng)中可以使用 exit(0)來中止程序,傳遞的數(shù)字參數(shù)表示是否遇到異常。如果使用 exit(1)退出將會(huì)出現(xiàn)一個(gè)錯(cuò)誤,但是用 exit(0)就是正常的退出。參數(shù)部分和正常的布爾邏輯正好是相反的 (正常的布爾邏輯中 0==False) 您可以使用不同的數(shù)字來表示不同的錯(cuò)誤結(jié)果。你也可以用 exit(100)來表示一個(gè)不同于 exit(2)和 exit(1)的錯(cuò)誤信息.

Q: 為什么有時(shí)候把 raw_input 寫成 raw_input('>')

raw_input 的參數(shù)只是一個(gè)字符串,會(huì)打印顯示在要求用戶輸入之前。