six.moves 模块 增强写的代码对python2和3和适用性,


from six.moves import [module]
比如有时因为2和3的差异,模块可能name有差异
参考:https://pythonhosted.org/six/#module-six.moves

相关