What will the following code print?
fhand = open('data.txt') for line in fhand: print(line)
b) The file handle object
d) The first line of data.txt
data.txt
c) An error message
a) The content of data.txt