Answers for "python read file into text"

66

python read json file

import json

with open('path_to_file/person.json') as f:
  data = json.load(f)

print(data)
Posted by: Guest on April-08-2020
12

python read file to variable

with open('data.txt', 'r') as file:
    data = file.read().replace('\n', '')
Posted by: Guest on February-27-2020

Code answers related to "python read file into text"

Python Answers by Framework

Browse Popular Code Answers by Language