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
Or write r before c:\, like with open(r'c:...). However, you must put r in front of the single quote.
© 2024 OneMinuteCode. All rights reserved.