美文网首页
ex26改错

ex26改错

作者: 果三代 | 来源:发表于2016-03-17 22:43 被阅读110次

ex26给了一个代码链接任务就是把这个代码修改正确,也是很简单,把改后的代码贴上,心细点就能很快修改完

#coding=utf

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) #多了个'o'
    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."

words = break_words(sentence)
sorted_words = sort_words(words)

print_first_word(words)
print_last_word(words)
print_first_word(sorted_words)
print_last_word(sorted_words)
sorted_words = sort_sentence(sentence)
print sorted_words

print_first_and_last(sentence)
print_first_and_last_sorted(sentence)

相关文章

  • ex26改错

    ex26给了一个代码链接任务就是把这个代码修改正确,也是很简单,把改后的代码贴上,心细点就能很快修改完

  • 改错

    2018年6月3日 星期日 晴 今天我上班,哥哥一直跟着爷爷在三楼那边,到晚上才回来,据说今天...

  • 改错

    2018.4.13.阴雨 今天上午抽空把孩子昨天作业盒子的错题整理到...

  • 改错

    2018.4.13 星期五 阴有小雨 6℃~14℃ 亲子日记第88天 中午我把错题本拿出来,想让你把原来错...

  • 改错

    2018.7.1 星期日 天气 晴 亲子日记第147天 儿子从昨天晚上开始嗓子痛,今天早上吃了药做了个艾...

  • 改错

    列宁曾说过:“聪明的人并不是不犯错误,只是他们不犯重大错误同时能迅速纠正错误。”一个人难免犯错误,关键在于犯错之后...

  • 改错

    2018-04-17 星期二 晴 今晚,数学作业要求写在小演草本上。琪琪其实已经全部完成, 猛然,他...

  • 改错

    宝贝昨天早上是坐邻居阿姨的车,去上学的,也随手把手抄报落在了阿姨的车里了,可是晚上回来的时候却告诉我手抄报交了,老...

  • 改错

    宝贝昨天早上是坐邻居阿姨的车,去上学的,也随手把手抄报落在了阿姨的车里了,可是晚上回来的时候却告诉我手抄报交了,老...

  • 改错

    这是昨天简友给我发的私信,我的文章里错字连篇⊙∀⊙!由衷的感谢简友的提醒。 但是,但是,但是,⊙∀⊙!郁闷的是我找...

网友评论

      本文标题:ex26改错

      本文链接:https://www.haomeiwen.com/subject/ilvclttx.html