Read a file in Python

To read a file in Python do:

with open(“testfile.txt”) as file:  
  contents = file.read().replace("\n", " ")
  print contents

To read a file line by line in Python do:

with open(“testfile.txt”) as file:  
  contents = file.readlines() 
  for line in contents:
    print line

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