I want to read the json file on drive C with Python!!!!

Asked 1 years ago, Updated 1 years ago, 122 views

I'm trying to get json file to python and use pandas I couldn't load the json file

with open('C:\BicData\dd.json') as k: data = json.load(k)

json python3.6.1 jupyter anaconda dictionary

2022-09-21 23:01

2 Answers


2022-09-21 23:01

Or write r before c:\, like with open(r'c:...). However, you must put r in front of the single quote.


2022-09-21 23:01

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.