TypeError:JSON对象必须是str,而不是'list'

问题描述 投票:-1回答:1

您好我想通过使用加载和转储使JSON可读,但我遇到此错误

"TypeError: the JSON object must be str, not 'list'"

这是我的代码:

parsedCoin = json.loads(coin)
print(json.dumps(parsedCoin, indent=4, sort_keys=True))

我怎么能解决这个问题?

json python-3.x
1个回答
0
投票

json.loads需要一个字符串。 json.dumps(coin)会给你一个字符串版本的硬币。

© www.soinside.com 2019 - 2024. All rights reserved.