Python的six模块相关
2019-04-28 本文已影响0人
4thirteen2one
import six
了之后
-
six.unichr(hexnum)
其实等同于Python3中的chr(hexnum)
-
list(six.iteritems(dictionary))
其实等同于Python3中的list(dictionary.iteritems())
-
six.text_type(whatever)
其实等同于Python3中的str(whatever)