3

经历 Learn Python the Hard Way,第 25 课。

我尝试执行脚本,结果是这样的:

myComp:lphw becca$ python l25 

myComp:lphw becca$ 

终端中没有打印或显示任何内容。

这是代码。

def breaks_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)

请帮忙!

4

2 回答 2

12

您所有的代码都是函数定义,但您从不调用任何函数,因此代码不做任何事情。

def关键字定义一个函数 just定义了一个 function。它不运行它。

例如,假设您的程序中只有此功能:

def f(x):
    print x

您是在告诉程序,无论何时调用f,都希望它打印参数。但是你实际上并没有告诉它你调用它f,只是当你调用它时要做什么。

如果要在某个参数上调用函数,则需要这样做,如下所示:

# defining the function f - won't print anything, since it's just a function definition
def f(x):
    print x
# and now calling the function on the argument "Hello!" - this should print "Hello!"
f("Hello!")

所以如果你想让你的程序打印一些东西,你需要对你定义的函数进行一些调用。调用什么以及使用什么参数取决于您希望代码做什么!

于 2012-04-28T21:42:37.780 回答
0

您可以在交互模式下执行该文件

python -i l25

然后在 python 提示符下调用你的函数

words = ["Hello", "World"]
print_first_word(words)

请安装ipython以获得更好的用户交互

于 2012-04-28T21:51:18.227 回答