最佳答案
我必须在表格中列出一大串单词:
['this\n', 'is\n', 'a\n', 'list\n', 'of\n', 'words\n']
然后使用带状函数,将其转换为:
['this', 'is', 'a', 'list', 'of', 'words']
我以为我写的东西会有用,但我总是错误地说:
“‘ list’对象没有属性‘ Strip’”
下面是我试过的代码:
strip_list = []
for lengths in range(1,20):
strip_list.append(0) #longest word in the text file is 20 characters long
for a in lines:
strip_list.append(lines[a].strip())