-2

这是我收到的输出,当我重新检查指定行的代码时,我不知道要检查什么。

Traceback (most recent call last):
  File "ex27.py", line 93, in <module>
    print_first_and_last_sorted(sentence)
  File "ex27.py", line 35, in print_first_and_last_sorted
    words = sort_sentence(sentence)
  File "ex27.py", line 25, in sort_sentence
    return sort_words(words)

任何人都可以解释一下吗?

4

2 回答 2

1

复制?

无论如何,当您收到此错误时,这意味着您正在尝试以无法使用列表调用特定对象的方式调用对象(在本例中为列表)。但是,如果不查看代码,很难说出究竟是什么问题。

于 2012-04-21T01:24:03.453 回答
0

您是否使用括号而不是方括号来引用列表中的项目?

例如

myList(0) # Incorrect

代替:

myList[0] # Correct
于 2012-04-21T01:51:58.573 回答