发布网友 发布时间:2022-04-06 00:13
共3个回答
热心网友 时间:2022-04-06 01:43
这段代码定义了好多函数,但没有调用函数,自然就没有输出了
可以在代码最后加上这样的语句:
print_first_and_last("Prints the first and last words of the sentence.")
print_first_and_last_sorted("Sorts the words then prints the first and last one.")
保存,再运行一下,看看应该就有输出了追问
额,这就是结果吗?能给注释下整段程序吗?谢谢,可以多加分
热心网友 时间:2022-04-06 03:01
你的python比2.4更低?sorted函数是在2.4版出现的,New in version 2.4. 你去python目录底下,就是有python.exe的目录那运行python.exe -V 可以看到版本。
还有,你得把需求写明白,是说这是一个改错题,要求改正代码错误的,还是神马?追问可能就是版本问题,我明天换个版本环境试试,这个难道不是自己定义的函数吗?明天再发个截图吧
追答sorted是python内建的函数。至少升到2.6版本。这有说明:www.python.org/doc//current/library/functions.html?highlight=sorted#sorted
热心网友 时间:2022-04-06 04:35
你写了好多函数,那入口函数是哪个呢?