Convert a list to json objects

后端 未结 4 1652
我寻月下人不归
我寻月下人不归 2020-12-17 03:46

I have a huge text file.

line 1
line 2
line 3
...

I have converted it into an array of lists:

[[\'String 1\'],[\'String 2\'         


        
4条回答
  •  自闭症患者
    2020-12-17 04:29

    Just adding onto alexce's response, you can easily convert the restructured data into JSON:

    import json
    json.dumps(result)
    

    There are some potential security concerns with top-level arrays. I'm not sure if they're still valid with modern browsers, but you may want to consider wrapping it in an object.

    import json
    json.dumps({'results': result})
    

提交回复
热议问题