linh-hk's picture
First version
a96bcc0
raw
history blame contribute delete
283 Bytes
def openFile(file):
with open(file) as f:
openFile = f.read()
return openFile
def openJsonFile(file):
import json
# Opening JSON file
with open(file, 'r') as openfile:
# Reading from json file
json_object = json.load(openfile)
return json_object