Python的six模块相关

2019-04-28  本文已影响0人  4thirteen2one

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)
上一篇 下一篇

猜你喜欢

热点阅读