Which of the following statement will return attribute error?
1.print(len(f.readlines( ).split( ))) #f is file handle
2.print(len(f.readline( ).split( ))) #f is file handle
3.print(len(f.read( ).split( ))) #f is file handle
4.None of the above
Answer:1