复制代码 代码如下: #!/usr/bin/python #-*- encoding: utf-8 -*- import types class NotIntegerError(Exception): pass class OutOfRangeError(Exception): pass _MAPPING = (u’零’, u’一’, u’二’, u’三’, u’四’, u’五’, u’六’, u’七’, u’八’, u’九’, ) _P0 = (u”, u’十’, u’百’, u’千’, ) _S4, _S8, _S16 = 10 ** 4 , 10 ** 8, 10 ** 16 _MIN,