【Python爬蟲】-笨辦法學 Python 習題18-26

習題18

def print_two(*args):
    arg1, arg2 = args
    print("arg1: {0}, arg2: {1}".format(arg1,arg2))
# ok, that *args is actually pointless, we can just do this
def print_two_again(arg1, arg2):
    print("arg1: {0}, arg2: {1}".format(arg1,arg2))
# this just takes one argument
def print_one(arg1):
    print("arg1: {}".format(arg1))
# this one takes no arguments
def print_none():
    print("I got nothin'.")
print_two("Zed","Shaw")
print_two_again("Zed","Shaw")
print_one("First!")
print_none()

習題19

def cheese_and_crackers(cheese_count, boxes_of_crackers):
    print("You have {} cheeses!".format(cheese_count))
    print("You have {} boxes of crackers!".format(boxes_of_crackers))
    print("Man that's enough for a party!")
    print("Get a blanket.\n")
print("We can just give the function numbers directly:")
cheese_and_crackers(20, 30)
print("OR, we can use variables from our script:")
amount_of_cheese = 10
amount_of_crackers = 50
cheese_and_crackers(amount_of_cheese, amount_of_crackers)
print("We can even do math inside too:")
cheese_and_crackers(10 + 20, 5 + 6)
print("And we can combine the two, variables and math:")
cheese_and_crackers(amount_of_cheese + 100, amount_of_crackers + 1000)

習題20

from sys import argv
script, input_file = argv
def print_all(f):
    print(f.read())
def rewind(f):
    f.seek(0)
def print_a_line(line_count, f):
    print(line_count, f.readline())
current_file = open(input_file)
print("First let's print the whole file:\n")
print_all(current_file)
print("Now let's rewind, kind of like a tape.")
rewind(current_file)
print("Let's print three lines:")
current_line = 1
print_a_line(current_line, current_file)
current_line = current_line + 1
print_a_line(current_line, current_file)
current_line = current_line + 1
print_a_line(current_line, current_file)

習題21

def add(a, b):
    print("ADDING %d + %d" % (a, b))
    return a + b
def subtract(a, b):
    print("SUBTRACTING %d - %d" % (a, b))
    return a - b
def multiply(a, b):
    print("MULTIPLYING %d * %d" % (a, b))
    return a * b
def divide(a, b):
    print("DIVIDING %d / %d" % (a, b))
    return a / b
print("Let's do some math with just functions!")
age = add(30, 5)
height = subtract(78, 4)
weight = multiply(90, 2)
iq = divide(10,2)
print("Age: %d, Height: %d, Weight: %d, IQ: %d" % (age, height, weight, iq))
# A puzzle for the extra credit, type it in anyway.
print("Here is a puzzle.")
what = add(age, subtract(height, multiply(weight, divide(iq, 2))))
print("That becomes: ", what, "Can you do it by hand?")

習題24

print("Let's practice everything.")
print('You\'d need to know \'bout escapes with \\ that do \n newlines and \t tabs.')
poem = """
\tThe lovely world
with logic so firmly planted
cannot discern \n the needs of love
nor comprehend passion from intuition
and requires an explanation
\n\t\twhere there is none.
"""
print("--------------")
print(poem)
print("--------------")
five = 10 - 2 + 3 - 6
print("This should be five: %s" % five)
def secret_formula(started):
    jelly_beans = started * 500
    jars = jelly_beans / 1000
    crates = jars / 100
    return jelly_beans, jars, crates
start_point = 10000
beans, jars, crates = secret_formula(start_point)
print("With a starting point of: %d" % start_point)
print("We'd have %d beans, %d jars, and %d crates." % (beans, jars, crates))
start_point = start_point / 10
print("We can also do that this way:")
print("We'd have %d beans, %d jars, and %d crates." % secret_formula(start_point))

習題25

def break_words(stuff):
    """This function will break up words for us."""
    words = stuff.split(' ')
    return words
def sort_words(words):
    """Sorts the words."""
    return sorted(words)
def print_first_word(words):
    """Prints the first word after popping it off."""
    word = words.pop(0)
    print(word)
def print_last_word(words):
    """Prints the last word after popping it off."""
    word = words.pop(-1)
    print(word)
def sort_sentence(sentence):
    """Takes in a full sentence and returns the sorted words."""
    words = break_words(sentence)
    return sort_words(words)
def print_first_and_last(sentence):
    """Prints the first and last words of the sentence."""
    words = break_words(sentence)
    print_first_word(words)
    print_last_word(words)
def print_first_and_last_sorted(sentence):
    """Sorts the words then prints the first and last one."""
    words = sort_sentence(sentence)
    print_first_word(words)
    print_last_word(words)

習題26


def break_words(stuff):
    """This function will break up words for us."""
    words = stuff.split(' ')
    return words

def sort_words(words):
    """Sorts the words."""
    return sorted(words)

def print_first_word(words)
    """Prints the first word after popping it off."""
    word = words.poop(0)
    print(word)

def print_last_word(words):
    """Prints the last word after popping it off."""
    word = words.pop(-1)
    print(word)

def sort_sentence(sentence):
    """Takes in a full sentence and returns the sorted words."""
    words = break_words(sentence)
    return sort_words(words)

def print_first_and_last(sentence):
    """Prints the first and last words of the sentence."""
    words = break_words(sentence)
    print_first_word(words)
    print_last_word(words)

def print_first_and_last_sorted(sentence):
    """Sorts the words then prints the first and last one."""
    words = sort_sentence(sentence)
    print_first_word(words)
    print_last_word(words)


print("Let's practice everything.")
print('You\'d need to know \'bout escapes with \\ that do \n newlines and \t tabs.')

poem = """
\tThe lovely world
with logic so firmly planted
cannot discern \n the needs of love
nor comprehend passion from intuition
and requires an explantion
\n\t\twhere there is none.
"""


print("--------------")
print(poem)
print("--------------")

five = 10 - 2 + 3 - 5
print("This should be five: %s" % five)

def secret_formula(started):
    jelly_beans = started * 500
    jars = jelly_beans /1000
    crates = jars / 100
    return jelly_beans, jars, crates


start_point = 10000
beans,jars, crates = secret_formula(start_point)

print("With a starting point of: %d" % start_point)
print("We'd have %d jeans, %d jars, and %d crates." % (beans, jars, crates))

start_point = start_point / 10

print("We can also do that this way:")
print("We'd have %d beans, %d jars, and %d crabapples." % secret_formula(start_point))


sentence = "All god\tthings come to those who weight."

#以下需要導入25題代碼
# words = ex25.break_words(sentence)
# sorted_words = ex25.sort_words(words)
# 
# print_first_word(words)
# print_last_word(words)
# .print_first_word(sorted_words)
# print_last_word(sorted_words)
# sorted_words = ex25.sort_sentence(sentence)
# prin(sorted_words)
# 
# print_irst_and_last(sentence)
# 
#    print_first_a_last_sorted(senence)
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市再菊,隨后出現(xiàn)的幾起案子葛账,更是在濱河造成了極大的恐慌晓避,老刑警劉巖,帶你破解...
    沈念sama閱讀 218,941評論 6 508
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件质和,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機糕伐,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,397評論 3 395
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來蘸嘶,“玉大人良瞧,你說我怎么就攤上這事陪汽。” “怎么了褥蚯?”我有些...
    開封第一講書人閱讀 165,345評論 0 356
  • 文/不壞的土叔 我叫張陵挚冤,是天一觀的道長。 經常有香客問我赞庶,道長训挡,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,851評論 1 295
  • 正文 為了忘掉前任歧强,我火速辦了婚禮澜薄,結果婚禮上,老公的妹妹穿的比我還像新娘摊册。我一直安慰自己肤京,他們只是感情好,可當我...
    茶點故事閱讀 67,868評論 6 392
  • 文/花漫 我一把揭開白布丧靡。 她就那樣靜靜地躺著蟆沫,像睡著了一般。 火紅的嫁衣襯著肌膚如雪温治。 梳的紋絲不亂的頭發(fā)上饭庞,一...
    開封第一講書人閱讀 51,688評論 1 305
  • 那天,我揣著相機與錄音熬荆,去河邊找鬼舟山。 笑死,一個胖子當著我的面吹牛卤恳,可吹牛的內容都是我干的累盗。 我是一名探鬼主播,決...
    沈念sama閱讀 40,414評論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼突琳,長吁一口氣:“原來是場噩夢啊……” “哼若债!你這毒婦竟也來了?” 一聲冷哼從身側響起拆融,我...
    開封第一講書人閱讀 39,319評論 0 276
  • 序言:老撾萬榮一對情侶失蹤蠢琳,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后镜豹,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體傲须,經...
    沈念sama閱讀 45,775評論 1 315
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 37,945評論 3 336
  • 正文 我和宋清朗相戀三年趟脂,在試婚紗的時候發(fā)現(xiàn)自己被綠了泰讽。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 40,096評論 1 350
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖已卸,靈堂內的尸體忽然破棺而出佛玄,到底是詐尸還是另有隱情,我是刑警寧澤咬最,帶...
    沈念sama閱讀 35,789評論 5 346
  • 正文 年R本政府宣布翎嫡,位于F島的核電站欠动,受9級特大地震影響永乌,放射性物質發(fā)生泄漏。R本人自食惡果不足惜具伍,卻給世界環(huán)境...
    茶點故事閱讀 41,437評論 3 331
  • 文/蒙蒙 一翅雏、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧人芽,春花似錦望几、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,993評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至惕味,卻和暖如春楼誓,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背名挥。 一陣腳步聲響...
    開封第一講書人閱讀 33,107評論 1 271
  • 我被黑心中介騙來泰國打工疟羹, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人禀倔。 一個月前我還...
    沈念sama閱讀 48,308評論 3 372
  • 正文 我出身青樓榄融,卻偏偏與公主長得像,于是被迫代替她去往敵國和親救湖。 傳聞我的和親對象是個殘疾皇子愧杯,可洞房花燭夜當晚...
    茶點故事閱讀 45,037評論 2 355

推薦閱讀更多精彩內容