猿问

在python中读取json值时出现无效参数错误

在python中读取外部json文件的值时出现无效参数错误


我试过了:


import json


with open('https://www.w3schools.com/js/json_demo.txt') as json_file:

    data = json.load(json_file)

    #for p in data['people']:

    print('Name: ' + data['name'])

给了我错误:


with open(' https://www.w3schools.com/js/json_demo.txt ') as json_file: OSError: [Errno 22] 无效参数:' https://www.w3schools.com/js/json_demo.txt '


噜噜哒
浏览 99回答 2
2回答
随时随地看视频慕课网APP

相关分类

Python
我要回答