import six
了之后
-
six.unichr(hexnum)
其实等同于Python3中的chr(hexnum)
-
list(six.iteritems(dictionary))
其实等同于Python3中的list(dictionary.iteritems())
-
six.text_type(whatever)
其实等同于Python3中的str(whatever)
import six
了之后
six.unichr(hexnum)
其实等同于Python3中的chr(hexnum)
list(six.iteritems(dictionary))
其实等同于Python3中的list(dictionary.iteritems())
six.text_type(whatever)
其实等同于Python3中的str(whatever)
本文标题:Python的six模块相关
本文链接:https://www.haomeiwen.com/subject/ozejnqtx.html
网友评论