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 MATLAB怎么通过柱坐标变换画开口是圆形的旋转抛物面?
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题
  • ¥15 Visual Studio问题
  • ¥20 求一个html代码,有偿