什么是Python作为json_encode的PHP

时间:2010-10-14 10:09:54

标签: php python json

  

可能重复:
  Easy JSON encoding with Python

我想从数据库中获取记录并将其内置到json中。我知道我们可以在使用PHP时使用json_encode。但是我们怎么能用Python来做呢

2 个答案:

答案 0 :(得分:8)

# Python 2.6+
import json
result = json.dumps(value)
or
# Python 2.6+
import json
json.dump(value, out_file)

从谷歌第一个结果得到。 http://www.php2python.com/wiki/function.json-encode/

请在提出简单,可搜索的问题之前进行研究!

答案 1 :(得分:2)

Python有几种json实现。我喜欢simplejson,因为它很简单。