美文网首页
python常用语法指南

python常用语法指南

作者: fangtang0101 | 来源:发表于2018-03-12 16:07 被阅读20次

    1. 输出json 文件

    当在python中将 dic 转成json 之后,很多中文变成 未编码的中文,需要加ensure_ascii=False

    json_str = json.dumps(val_all,ensure_ascii=False)
    print(type(json_str))
    print(json_str)
    with open('test.json', 'w') as json_file:
        json_file.write(json.dumps(val_all,ensure_ascii=False))
    

    https://github.com/fangtang0101/python-tool-dicToJson

    2.不同类型之间相互转换

    http://blog.csdn.net/violet_echo_0908/article/details/52486689

    3.for 循环中需要得到 index

    enumerate 必须用这个

    for idx, val in enumerate(list_map['options1']):
    

    4.写入txt 与 换行

        with open("test.txt","w") as f:
            for item in list_finished:
                f.write(item)
                f.write('\n')
    

    相关文章

      网友评论

          本文标题:python常用语法指南

          本文链接:https://www.haomeiwen.com/subject/skonfftx.html