gpt4 book ai didi

python - 在python中验证字符串是否为JSON?

转载 作者:IT老高 更新时间:2023-10-28 21:14:37 27 4
gpt4 key购买 nike

我在 Python 中有一个字符串,我想知道它是否是有效的 JSON。

json.loads(mystring) 如果字符串不是 JSON 但我不想捕获异常,则会引发错误。

我想要这样的东西,但它不起作用:

if type(mysrting) == dict:
myStrAfterLoading = json.loads(mystring)
else:
print "invalid json passed"

我是否必须捕获该 ValueError 才能查看我的字符串是否为 JSON?

最佳答案

正确答案是:别再想捕获 ValueError .

如果字符串是有效的 json,则 Python 脚本示例返回 bool 值:

import json

def is_json(myjson):
try:
json_object = json.loads(myjson)
except ValueError as e:
return False
return True

print(is_json('{}')) # prints True
print(is_json('{asdf}')) # prints False
print(is_json('{"age":100}')) # prints True
print(is_json('{'age':100 }')) # prints False
print(is_json('{"age":100 }')) # prints True

关于python - 在python中验证字符串是否为JSON?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11294535/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com