Python 之 json.dumps()

Python 之 json.dumps()

参考:

json — JSON encoder and decoder — Python 3.8.6 documentation

json.dumps参数之解 - 简书

python的JSON用法——dumps的各种参数用法(详细) - 代码天地 (codetd.com)

环境

python 3.8.5

使用方法

  1. 引入json库:

    import json
    # help("json")调用json库使用说明
    
  2. 语法:

    dumps(obj, *, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, cls=None, indent=None, separators=None, default=None, sort_keys=False, **kw)
    

    主要参数分析

    1. obj: 需要转换成json的对象
    2. skipkeys: 默认False,遇到非python基本类型(str, int, long, float, bool)的数据,报错TypeError;设置为True,则跳过。
    3. ensure_ascii: 默认True输出ascii码,若要输出中文一般设置为False
    4. indent: 根据参数值,对数据进行缩进显示

    # 将digit中的数据输入到C:\digits.json文件中
    import json
    
    json_file = 'C:\digits.json'
    
    digit = {
           'A':'1','B':'2','C':'3'}
    
    with open (file, 'a') as json_file:
        json_file.write('\n'+json.dumps(digit))
    

你可能感兴趣的:(python)