What will the following code print? fhand = open('data.txt') count = 0 for line in fhand: count += 1 print('Line Count:', count)