尝试从每一行获取第一个单词时出现Synthax错误..?

时间:2018-03-20 18:41:32

标签: python-2.7

我试图打印非常行的第一个单词(期望第一行),但我一直在"' builtin_function_or_method'对象没有属性' split'。"它来自我创建的文本文件。这是句子。

We are hungry.
There is an apple.
There is an orange.
Now we are thirsty.

这是我到目前为止所得到的。

filename = "firstthing.txt" 
file = open(filename)
text = file.read
lines = text.split('\n')

for line in lines:
  line.split(" ",1)[0]
  print " There are the lines:"

我错过了什么或做错了什么?

0 个答案:

没有答案