weixin_44655378 2019-04-01 22:57 采纳率: 0%
浏览 362

笨方法学python3 习题25,给sorted_words重新赋值,为什么不行,告诉我list不能分割

这是代码:
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):
"""Print the first word after popping it off"""
word = words.pop(0)
print(word)

def print_lat_word(words):
"""Prints the last word after poping 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_lat_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_lat_word(words)
这是返回结果:
sorted_words = test25.sort_sentence(sentence)
Traceback (most recent call last):
File "", line 1, in
File "F:\Python\test25.py", line 23, in sort_sentence
return sort_words(words)
File "F:\Python\test25.py", line 22, in sort_sentence
words = break_words(sentence)
File "F:\Python\test25.py", line 3, in break_words
words = stuff.split(' ')
AttributeError: 'list' object has no attribute 'split'
为什么?求大神指教,用的是pycharm

  • 写回答

2条回答 默认 最新

  • greatofdream 2019-04-01 23:43
    关注

    sentence输入时不是字符串?
    例如这样定义sentence="hehe"

    评论

报告相同问题?

悬赏问题

  • ¥50 易语言把MYSQL数据库中的数据添加至组合框
  • ¥20 求数据集和代码#有偿答复
  • ¥15 关于下拉菜单选项关联的问题
  • ¥20 java-OJ-健康体检
  • ¥15 rs485的上拉下拉,不会对a-b<-200mv有影响吗,就是接受时,对判断逻辑0有影响吗
  • ¥15 使用phpstudy在云服务器上搭建个人网站
  • ¥15 应该如何判断含间隙的曲柄摇杆机构,轴与轴承是否发生了碰撞?
  • ¥15 vue3+express部署到nginx
  • ¥20 搭建pt1000三线制高精度测温电路
  • ¥15 使用Jdk8自带的算法,和Jdk11自带的加密结果会一样吗,不一样的话有什么解决方案,Jdk不能升级的情况