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