欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python3 json数据格式的转换(dumps/loads的使用、dict to str/str to dict、json字符串/字典的相互转换)

程序员文章站 2023-04-08 07:57:09
在写网络爬虫的时候,有时候会抓取到一些json格式的字符串,想要通过python字典的方式对字串中的内容进行寻址,则需要将json字符串先转换为python字典。 dumps()函数: loads()函数: 示例: ......

在写网络爬虫的时候,有时候会抓取到一些json格式的字符串,想要通过python字典的方式对字串中的内容进行寻址,则需要将json字符串先转换为python字典。

dumps()函数: 

python3 json数据格式的转换(dumps/loads的使用、dict to str/str to dict、json字符串/字典的相互转换)

loads()函数:

python3 json数据格式的转换(dumps/loads的使用、dict to str/str to dict、json字符串/字典的相互转换)

示例:

import json

class fordatas:
    def __init__(self):
        pass
    
    def testjson(self):
        # 定义一个字典
        d = {'a': 1,
             'b': 2,
             'c': 'asdf'}
        print('d:', d, type(d))

        # dict to str
        d1 = json.dumps(d)
        print('d1:', d1, type(d1))

        # str to dict
        d2 = json.loads(d1)
        print('d2:', d2, type(d2))

if __name__ == '__main__':
    tt = fordatas()
    tt.testjson()