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 comment