Heim  >  Artikel  >  php教程  >  Python 操作 json

Python 操作 json

WBOY
WBOYOriginal
2016-06-06 20:00:331325Durchsuche

1、安装 pip install simplejson 2、实例 import simplejson as json # 转换成json串 json. dumps (['foo', {'bar': ('baz', '白菜', 1.0, 2)}]) # json 解析 obj = json. loads ( ['foo', {'bar': ('baz', '白菜', 1.0, 2)}]) print obj[0] # 结果为: foo

1、安装

      pip install simplejson


2、实例

     import simplejson as json


     # 转换成json串

     json.dumps(['foo', {'bar': ('baz', '白菜', 1.0, 2)}])

    

    # json 解析

    obj = json.loads("['foo', {'bar': ('baz', '白菜', 1.0, 2)}]")

    print obj[0]  # 结果为: foo


来源: https://pypi.python.org/pypi/simplejson

===================  请关注  ========================

                                           Python 操作 json

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:CodeIgniter 安装Nächster Artikel:Python pip 安装