导入JSON对象 - Python

时间:2017-10-07 05:43:23

标签: json python-3.x

我有一个JSON对象如下:

details = {

        "name"      : "ram",
        "place"     : "abc",
        "height"    : 5.10,
        "list"      : [1,2,3,4,5,6],
        "tuple"     : (0,1,2),
        "colors"    : {"mng":"white","aft" : "blue","night":"red"},
        "car"       : "None",
        "bike"      : "True",

        }

当我在python中转换json对象时,我导入了json模块,并验证了所有方法如下。

import json
print (dir(python))

现在我可以看到'转储','转储','编码器','加载','加载','扫描器'方法,但当我在上面编码json对象时

a = json.dump(details)
print (s)

我将属性错误称为

  

AttributeError:模块'json'没有属性'dump'

除了上面我想知道在python代码中导入json对象的最佳方法是什么(除了import json)

使用python 3

提前致谢

0 个答案:

没有答案