Python: Convert a list of python dictionaries to an array of JSON objects

前端 未结 3 617
心在旅途
心在旅途 2021-02-03 10:46

I\'m trying to write a function to convert a python list into a JSON array of {\"mpn\":\"list_value\"} objects, where \"mpn\" is the literal string value I need for every object

3条回答
  •  有刺的猬
    2021-02-03 11:10

    You are adding the exact same dictionary to the list. You should create a new dictionary for each item in the list:

    json.dumps([dict(mpn=pn) for pn in lst])
    

提交回复
热议问题