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"

    评论

报告相同问题?

悬赏问题

  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题