-4
由於標題說我正在尋找去除特定鍵的json,這可能使用json或simplejson與python?有沒有辦法使用python和simplejson/json去除json鍵/值
由於標題說我正在尋找去除特定鍵的json,這可能使用json或simplejson與python?有沒有辦法使用python和simplejson/json去除json鍵/值
一個JSON將加載到Python字典,所以你可以僅僅通過字典解析剝奪他們:
{k:v for k,v in json.loads(string_where_json_was_readed) if k not in keys_to_strip_list}