我试图打印非常行的第一个单词(期望第一行),但我一直在"' 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:"
我错过了什么或做错了什么?