Script to read a file in python

Read a file in python

import time
filepath = 'C:\\d\\bookmark\\hr.log'
with open(filepath) as fp:
   line = fp.readline()
   cnt = 1
   while line:
       print (line.strip())
       line = fp.readline()
       cnt += 1

If you want to use line number with program then use this script.

import time
filepath = 'C:\\d\\bookmark\\hr.log'
with open(filepath) as fp:
   line = fp.readline()
   cnt = 1
   while line:
       #print (line.strip())
       print("Line {}: {}".format(cnt, line.strip()))
       line = fp.readline()
       cnt += 1

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.