Heim > php教程 > php手册 > Python 操作 json

Python 操作 json

WBOY
Freigeben: 2016-06-06 20:00:33
Original
1359 Leute haben es durchsucht

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

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
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
Beliebte Empfehlungen
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage