美文网首页
python学习笔记

python学习笔记

作者: 乔木清流 | 来源:发表于2016-07-22 15:22 被阅读0次

    1.json.dumps和 json.loads的区别:

    json.dumps : dict转成str
    json.loads: str转成dict
    2.eval()函数十分强大,

    将string类型的list转换成list

    a = "[[1,2], [3,4], [5,6], [7,8], [9,0]]"
    b = eval(a)
    print type(b)
    print b

    将string类型的dict转换成dictc = "{1: 'a', 2: 'b'}"

    d = eval(c)
    print type(d)
    print d

    将string类型的tuple转换成tuple

    e = "([1,2], [3,4], [5,6], [7,8], (9,0))"
    f = eval(e)
    print type(f)
    print f

    相关文章

      网友评论

          本文标题:python学习笔记

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