【Python爬蟲】--第三周作業(yè)

39

ten_things = "Apples Oranges Crows Telephone Light Sugar"
print("Wait there's not 10 things in that list, let's fix that.")

stuff = ten_things.split(' ')  #split(ten_things, ' ')
more_stuff = ["Day", "Night", "Song", "Frisbee", "Corn", "Banana", "Girl", "Boy"]
while len(stuff) != 10:
    next_one = more_stuff.pop()   #pop(more_stuff, )
    print("Adding:", next_one)
    stuff.append(next_one)  #append(stuff, next_one)
    print("There's %d items now." % len(stuff))

print("There we go:", stuff)
print("Let's do some things with stuff.")
print(stuff[1])
print(stuff[-1])
print(stuff.pop())
print(' '.join(stuff)) #join(' ', stuff)
print('#'.join(stuff[3:5])) #join('#', stuff)

40

#   定義一個字典cities
cities = {'CA':'San Francisco', 'MI':'Detroit', 'FL':'Jacksonville'}
#   向字典添加兩個key:value
cities['NY'] = 'New York'
cities['OR'] = 'Portland'
x = 10
# 定義一個函數(shù)(需要兩個參數(shù))
def find_city(themap, state):
    #   條件判斷為真則返回值
    if state in themap:
        return themap[state]
    else:#  不為真則返回沒有找到
        return "Not found."
# 把函數(shù)添加到字典cities中key為'_find'
cities['_find'] = find_city
# 循環(huán)體

while True:
    #   打印并讓用戶輸入,沒有輸入則中斷循環(huán)
    print("State? (ENTER to quit)"),
    state = input("> ")
    if not state : break
    #調(diào)用字典中的'-find'中的函數(shù),并將結果存放在變量中
    city_found = cities['_find'](cities, state)
    #打印變量內(nèi)容
    print(city_found)

#字典操作:
print(len(cities))     #字典長度
s = str(cities)
print("s type:", type(s))
print(cities)
print(type(cities))
print(type(x))

cities_copy = cities.copy()
cities.clear()
print("This is cities_copy1:",cities_copy)
print("cities:",cities)
del(cities)

print("keys:",cities_copy.keys)
print('keys:', cities_copy.keys())
print("values:",cities_copy.values())
#print("This is cities_copy:",cities_copy)
city = {"HZ":"hangzhou"}
cities_copy.update(city)
print("This is cities_copy2:",cities_copy)
cities_copy.setdefault("SH")
print("This is cities_copy3:",cities_copy)
print('items',cities_copy.items())
dict2 = dict.fromkeys(cities_copy.keys(), "hangzhou")
print(dict2)

41

from sys import exit
from random import randint
#death房間,隨機打印現(xiàn)list中的作一條數(shù)據(jù),并退出游戲
def death():
    quips = [
        "You died. You kinda suck at this.",
        "Nice job, you died ... jackass.",
        "Such a loser.",
        "I have a small puppy that's better at this."
    ]
    print(quips[randint(0, len(quips)-1)])
    exit(1)
#central_corridor房間,
def central_corridor():
    print("The Gothons of Planet Percal #25 have invaded your ship and destroyed")
    print("Your entire crew. You are the last surviving member and your last.")
    print("mission is to get the neutron destruct bomb from the Weapons Armory,")
    print("put it in the bridge, and blow the ship up after getting into an ")
    print("escape pod.")
    print("\n")
    print("You're running down the central corridor to the Weapons Armory when")
    print("a Gothon jumps out, red scaly skin, dark grimy teeth, and evil clown costume")
    print("flowing around his hate filled body. He'sblocking the door to the")
    print("Armory and about to pull a weapon to blast you.")
    action = input("> ")
    if action == "shoot!":
        print("Quick on the draw you yank out your blaster and fire it at the Gothon.")
        print("His clown costume is flowing and moving around his body, which throws")
        print("off your aim. Your laser hitsh is costume but misses him entirely. This")
        print("completely ruins his brand new costume his mother bought him, which")
        print("makes him fly into an insane rage and blast you repeatedly in the face until")
        print("you are dead. Then he eats you.")
        print("death")
    elif action == "dodge!":
        print("Like a world class boxer you dodge, weave, slip and slide right")
        print("as the Gothon's blaster cranks a laser past your head.")
        print("In the middle of your artful dodge your foot slips and you")
        print("bang your head on the metal wall and pass out.")
        print("You wake up shortly after only to die as the Gothon stomps on")
        print("your head and eats you.")
        print("death")
    elif action == "tell a joke":
        print("Lucky for you they made you learn Gothon insults in the academy.")
        print("You tell the one Gothon joke you know:")
        print("Lbhe zbgure vf fb sng, jura fur fvgf nebhaq gur ubhfr, fur fvgf nebhaq gur ubhfr.")
        print("The Gothon stops, tries not to laugh, then busts out laughing and can't move.")
        print("While he's laughing you run up and shoot him square in the head")
        print("utting him down, then jump through the Weapon Armory door.")
        return "laser_weapon_armory"
    else:
        print("DOES NOT COMPUTE!")
        return "central_corridor"


def laser_weapon_armory():
    print("You do a dive roll into the Weapon Armory, crouch and scan the room")
    print("for more Gothons that might be hiding. It'sdead quiet, too quiet.")
    print("You stand up and run to the far side of the room and find the")
    print("neutron bomb in its container. There's a keypad lock on the box")
    print("and you need the code to get the bomb out. If you get the code")
    print("wrong 10 times then the lock closes forever and you can't")
    print("get the bomb. The code is 3 digits.")
    code = "%d%d%d" % (randint(1,9), randint(1,9), randint(1,9))
    guess = input('[keypad]> ')
    guesses = 0
    while  guess != code and guesses < 10:
        print("BZZZZEDDD!")
        guesses += 1
        guess = input("[keypad]> ")

    if guess == code:
        print("The container clicks open and the seal breaks, letting gas out.")
        print("You grab the neutron bomb and run as fast as you can to the")
        print("bridge where you must place it in the right spot.")
        return 'the_bridge'
    else:
        print("The lock buzzes one last time and then you hear a sickening")
        print("melting sound as the mechanism is fused together.")
        print("You decide to sit there, and finally the Gothons blow up the")
        print("ship from their ship and you die.")
        return 'death'

def the_bridge():
    print("You burst onto the Bridge with the neutron destruct bomb")
    print("under your arm and surprise 5 Gothons who are trying to")
    print("take control of the ship. Each of them has an even uglier")
    print("clown costume than the last. They haven'tpulled their")
    print("weapons out yet, as they see the active bomb under your")
    print("arm and don't want to set it off.")
    action = input("> ")
    if action == "throw the bomb":
        print("In a panic you throw the bomb at the group of Gothons")
        print("and make a leap for the door. Right as you drop it a")
        print("Gothon shoots you right in the back killing you.")
        print("As you die you see another Gothon frantically try to disarm")
        print("the bomb. You die knowing they will probably blow up when")
        print("it goes off.")
        return 'death'
    elif action == "slowly place the bomb":
        print("You point your blaster at the bomb under your arm")
        print("and the Gothons put their hands up and start to sweat.")
        print("You inch backward to the door, open it, and then carefully")
        print("place the bomb on the floor, pointing your blaster at it.")
        print("You then jump back through the door, punch the close button")
        print("and blast the lock so the Gothons can't get out.")
        print("Now that the bomb is placed you run to the escape pod to")
        print("get off this tin can.")
        return 'escape_pod'
    else:
        print("DOES NOT COMPUTE!")
        return "the_bridge"

def escape_pod():
    print("You rush through the ship desperately trying to make it to")
    print("the escape pod before the whole ship explodes. It seems like")
    print("hardly any Gothons are on the ship, so your run is clear of")
    print("interference. You get to the chamber with the escape pods, and")
    print("now need to pick one to take. Some of them could be damaged")
    print("but you don't have time to look. There's5pods, which one")
    print("do you take?")

    good_pod = randint(1,5)
    guess = input("[pod #]> ")

    if int(guess) != good_pod:
        print("You jump into pod %s and hit the eject button." % guess)
        print("The pod escapes out into the void of space, then")
        print("implodes as the hull ruptures, crushing your body")
        print("into jam jelly.")
        return 'death'
    else:
        print("You jump into pod %s and hit the eject button." % guess)
        print("The pod easily slides out into space heading to")
        print("the planet below. As it flies to the planet, you look")
        print("back and see your ship implode then explode like a")
        print("bright star, taking out the Gothon ship at the same")
        print("time. You won!")
        exit(0)




ROOMS = {
    'death': death,
    'central_corridor': central_corridor,
    'laser_weapon_armory': laser_weapon_armory,
    'the_bridge': the_bridge,
    'escape_pod': escape_pod
}

def runner(map, start):
    next = start
    while True:
        room = map[next]
        print("\n____________")
        next = room()

runner(ROOMS, 'central_corridor')

41 doctoring

from sys import exit
from random import randint
#death房間,隨機打印現(xiàn)list中的作一條數(shù)據(jù),并退出游戲
def death():
    quips = [
        "You died. You kinda suck at this.",
        "Nice job, you died ... jackass.",
        "Such a loser.",
        "I have a small puppy that's better at this."
    ]
    print(quips[randint(0, len(quips)-1)])
    exit(1)
#central_corridor房間,
def central_corridor():
    print('''
            "The Gothons of Planet Percal #25 have invaded your ship and destroyed"
            "Your entire crew. You are the last surviving member and your last."
            "mission is to get the neutron destruct bomb from the Weapons Armory,"
            "put it in the bridge, and blow the ship up after getting into an "
            "escape pod."
            "\n"
            "You're running down the central corridor to the Weapons Armory when"
            "a Gothon jumps out, red scaly skin, dark grimy teeth, and evil clown costume"
            "flowing around his hate filled body. He'sblocking the door to the"
            "Armory and about to pull a weapon to blast you."
    ''')
    action = input("> ")
    if action == "shoot!":
        print('''
        "Quick on the draw you yank out your blaster and fire it at the Gothon."
        "His clown costume is flowing and moving around his body, which throws"
        "off your aim. Your laser hitsh is costume but misses him entirely. This"
        "completely ruins his brand new costume his mother bought him, which"
        "makes him fly into an insane rage and blast you repeatedly in the face until"
        "you are dead. Then he eats you."
        "death"
        ''')
    elif action == "dodge!":
        print('''
        "Like a world class boxer you dodge, weave, slip and slide right"
        "as the Gothon's blaster cranks a laser past your head."
        "In the middle of your artful dodge your foot slips and you"
        "bang your head on the metal wall and pass out."
        "You wake up shortly after only to die as the Gothon stomps on"
        "your head and eats you."
        "death"
        ''')
    elif action == "tell a joke":
        print('''
        "Lucky for you they made you learn Gothon insults in the academy."
        "You tell the one Gothon joke you know:"
        "Lbhe zbgure vf fb sng, jura fur fvgf nebhaq gur ubhfr, fur fvgf nebhaq gur ubhfr."
        "The Gothon stops, tries not to laugh, then busts out laughing and can't move."
        "While he's laughing you run up and shoot him square in the head"
        "utting him down, then jump through the Weapon Armory door."
        ''')
        return "laser_weapon_armory"
    else:
        print("DOES NOT COMPUTE!")
        return "central_corridor"


def laser_weapon_armory():
    print('''
    "You do a dive roll into the Weapon Armory, crouch and scan the room"
    "for more Gothons that might be hiding. It'sdead quiet, too quiet."
    "You stand up and run to the far side of the room and find the"
    "neutron bomb in its container. There's a keypad lock on the box"
    "and you need the code to get the bomb out. If you get the code"
    "wrong 10 times then the lock closes forever and you can't"
    "get the bomb. The code is 3 digits."
    ''')
    code = "%d%d%d" % (randint(1,9), randint(1,9), randint(1,9))
    guess = input('[keypad]> ')
    guesses = 0
    while  guess != code and guesses < 10:
        print("BZZZZEDDD!")
        guesses += 1
        guess = input("[keypad]> ")

    if guess == code:
        print('''
        "The container clicks open and the seal breaks, letting gas out."
        "You grab the neutron bomb and run as fast as you can to the"
        "bridge where you must place it in the right spot."
        ''')
        return 'the_bridge'
    else:
        print('''
        "The lock buzzes one last time and then you hear a sickening"
        "melting sound as the mechanism is fused together."
        "You decide to sit there, and finally the Gothons blow up the"
        "ship from their ship and you die."
        ''')
        return 'death'

def the_bridge():
    print('''
    "You burst onto the Bridge with the neutron destruct bomb"
    "under your arm and surprise 5 Gothons who are trying to"
    "take control of the ship. Each of them has an even uglier"
    "clown costume than the last. They haven'tpulled their"
    "weapons out yet, as they see the active bomb under your"
    "arm and don't want to set it off."
    ''')
    action = input("> ")
    if action == "throw the bomb":
        print('''
        "In a panic you throw the bomb at the group of Gothons")
        "and make a leap for the door. Right as you drop it a")
        "Gothon shoots you right in the back killing you.")
        "As you die you see another Gothon frantically try to disarm")
        "the bomb. You die knowing they will probably blow up when")
        "it goes off."
        ''')
        return 'death'
    elif action == "slowly place the bomb":
        print('''
        "You point your blaster at the bomb under your arm")
        print("and the Gothons put their hands up and start to sweat.")
        print("You inch backward to the door, open it, and then carefully")
        print("place the bomb on the floor, pointing your blaster at it.")
        print("You then jump back through the door, punch the close button")
        print("and blast the lock so the Gothons can't get out.")
        print("Now that the bomb is placed you run to the escape pod to")
        print("get off this tin can."
        ''')
        return 'escape_pod'
    else:
        print("DOES NOT COMPUTE!")
        return "the_bridge"

def escape_pod():
    print('''
    "You rush through the ship desperately trying to make it to")
    print("the escape pod before the whole ship explodes. It seems like")
    print("hardly any Gothons are on the ship, so your run is clear of")
    print("interference. You get to the chamber with the escape pods, and")
    print("now need to pick one to take. Some of them could be damaged")
    print("but you don't have time to look. There's5pods, which one")
    print("do you take?"
    ''')

    good_pod = randint(1,5)
    guess = input("[pod #]> ")

    if int(guess) != good_pod:
        print('''
        "You jump into pod %s and hit the eject button." % guess)
        print("The pod escapes out into the void of space, then")
        print("implodes as the hull ruptures, crushing your body")
        print("into jam jelly."
        ''')
        return 'death'
    else:
        print('''
        '"You jump into pod %s and hit the eject button." % guess)
        print("The pod easily slides out into space heading to")
        print("the planet below. As it flies to the planet, you look")
        print("back and see your ship implode then explode like a")
        print("bright star, taking out the Gothon ship at the same")
        print("time. You won!"
        ''')
        exit(0)




ROOMS = {
    'death': death,
    'central_corridor': central_corridor,
    'laser_weapon_armory': laser_weapon_armory,
    'the_bridge': the_bridge,
    'escape_pod': escape_pod
}

def runner(map, start):
    next = start
    while True:
        room = map[next]
        print("\n____________")
        next = room()

runner(ROOMS, 'central_corridor')
最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 228,461評論 6 532
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 98,538評論 3 417
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
    開封第一講書人閱讀 176,423評論 0 375
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經(jīng)常有香客問我,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 62,991評論 1 312
  • 正文 為了忘掉前任,我火速辦了婚禮,結果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當我...
    茶點故事閱讀 71,761評論 6 410
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 55,207評論 1 324
  • 那天,我揣著相機與錄音,去河邊找鬼。 笑死,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 43,268評論 3 441
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 42,419評論 0 288
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 48,959評論 1 335
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 40,782評論 3 354
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 42,983評論 1 369
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 38,528評論 5 359
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 44,222評論 3 347
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 34,653評論 0 26
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 35,901評論 1 286
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 51,678評論 3 392
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 47,978評論 2 374

推薦閱讀更多精彩內(nèi)容