close
判斷JSON中是否存在某個鍵值:
Code: import json
jsonstr = "{\"key\":false,\"Special\":\"Test\"}"
str = json.loads(jsonstr)
if 'Special' in str:
print(" Contain ")
else:
print(" Not contain ")
|
Console: Contain |
Python 讀取 JSON String 時,如果遇到 return loads(fp.read(), 第一個可能就是使用到錯誤的函數:
Code: import json
jsonstr = "{\"key\":false}"
str = json.load(jsonstr)
|
錯誤訊息: str = json.load(jsonstr) |
正確的寫法只是將 load 加上 s,變成 loads:
str = json.loads(jsonstr)
|
Reference:
1. http://www.runoob.com/python/python-json.html
全站熱搜
留言列表