handler = open('textfile.txt')
count = 0
for line in handler: #for loop reads each line
count = count + 1
print('Line Count:', count)
handler = open('textfile.txt')
count = 0
for line in handler: #for loop reads each line
count = count + 1
print('Line Count:', count)