skip to Main Content

Import json file on python

I try to import a json file on python with : with open('C:/Users/angel/message.json', 'r') as file: data = json.load(file) I have the error : FileNotFoundError Traceback (most recent call last) Cell In[1], line 1 ----> 1 with open('C:/Users/angel/message.json', 'r') as…

VIEW QUESTION
Back To Top
Search