美文网首页
Python的six模块相关

Python的six模块相关

作者: 4thirteen2one | 来源:发表于2019-04-28 17:43 被阅读0次

    import six 了之后

    1. six.unichr(hexnum)其实等同于Python3中的chr(hexnum)
    2. list(six.iteritems(dictionary))其实等同于Python3中的list(dictionary.iteritems())
    3. six.text_type(whatever)其实等同于Python3中的str(whatever)

    相关文章

      网友评论

          本文标题:Python的six模块相关

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