Python实现把数字转换成中文


Posted in Python onJune 29, 2015

周末在家,写了个小程序,用于将阿拉伯数字转换化大写中文。程序没经过任何优化,出没经过详细的测试,挂到网上,方便将来有需要的时候直接拿来用。

#!/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, _MAX = 0, 9999999999999999

def _to_chinese4(num):
  '''转换[0, 10000)之间的阿拉伯数字
  '''
  assert(0 <= num and num < _S4)
  if num < 10:
    return _MAPPING[num]
  else:
    lst = [ ]
    while num >= 10:
      lst.append(num % 10)
      num = num / 10
    lst.append(num)
    c = len(lst)  # 位数
    result = u''
    
    for idx, val in enumerate(lst):
      if val != 0:
        result += _P0[idx] + _MAPPING[val]
        if idx < c - 1 and lst[idx + 1] == 0:
          result += u'零'
    
    return result[::-1].replace(u'一十', u'十')
    
def _to_chinese8(num):
  assert(num < _S8)
  to4 = _to_chinese4
  if num < _S4:
    return to4(num)
  else:
    mod = _S4
    high, low = num / mod, num % mod
    if low == 0:
      return to4(high) + u'万'
    else:
      if low < _S4 / 10:
        return to4(high) + u'万零' + to4(low)
      else:
        return to4(high) + u'万' + to4(low)
      
def _to_chinese16(num):
  assert(num < _S16)
  to8 = _to_chinese8
  mod = _S8
  high, low = num / mod, num % mod
  if low == 0:
    return to8(high) + u'亿'
  else:
    if low < _S8 / 10:
      return to8(high) + u'亿零' + to8(low)
    else:
      return to8(high) + u'亿' + to8(low)
    
def to_chinese(num):
  if type(num) != types.IntType and type(num) != types.LongType:
    raise NotIntegerError(u'%s is not a integer.' % num)
  if num < _MIN or num > _MAX:
    raise OutOfRangeError(u'%d out of range[%d, %d)' % (num, _MIN, _MAX))
  
  if num < _S4:
    return _to_chinese4(num)
  elif num < _S8:
    return _to_chinese8(num)
  else:
    return _to_chinese16(num)
  
if __name__ == '__main__':
  print to_chinese(9000)
Python 相关文章推荐
wxPython 入门教程
Oct 07 Python
使用PYTHON接收多播数据的代码
Mar 01 Python
web.py中调用文件夹内模板的方法
Aug 26 Python
python中list循环语句用法实例
Nov 10 Python
python与C互相调用的方法详解
Jul 14 Python
用python处理图片实现图像中的像素访问
May 04 Python
Python饼状图的绘制实例
Jan 15 Python
浅谈Scrapy网络爬虫框架的工作原理和数据采集
Feb 07 Python
在pycharm创建scrapy项目的实现步骤
Dec 01 Python
删除pycharm鼠标右键快捷键打开项目的操作
Jan 16 Python
Python语言规范之Pylint的详细用法
Jun 24 Python
Python实现提取PDF简历信息并存入Excel
Apr 02 Python
Python中if __name__ == '__main__'作用解析
Jun 29 #Python
django接入新浪微博OAuth的方法
Jun 29 #Python
python链接Oracle数据库的方法
Jun 28 #Python
python写日志封装类实例
Jun 28 #Python
Python实现的简单hangman游戏实例
Jun 28 #Python
python实现矩阵乘法的方法
Jun 28 #Python
python实现的用于搜索文件并进行内容替换的类实例
Jun 28 #Python
You might like
PHP 动态随机生成验证码类代码
2010/04/09 PHP
PHP防范SQL注入的具体方法详解(测试通过)
2014/05/09 PHP
php+xml实现在线英文词典之添加词条的方法
2015/01/23 PHP
laravel5.4利用163邮箱发送邮件的步骤详解
2017/09/22 PHP
LBS blog sql注射漏洞[All version]-官方已有补丁
2007/08/26 Javascript
Extjs实现进度条的两种便捷方式
2013/09/26 Javascript
jQuery源码解读之addClass()方法分析
2015/02/20 Javascript
js简单实现调整网页字体大小的方法
2016/07/23 Javascript
js操作浏览器的参数方法
2017/01/21 Javascript
浅谈js中的变量名和函数名重名
2017/02/13 Javascript
jquery实现数字输入框
2017/02/22 Javascript
jquery仿苹果的时间/日期选择效果
2017/03/08 Javascript
Angular 4.x 路由快速入门学习
2017/05/03 Javascript
深入理解vue-class-component源码阅读
2019/02/18 Javascript
mock.js模拟前后台交互
2019/07/25 Javascript
vue实现节点增删改功能
2019/09/26 Javascript
Python中内建函数的简单用法说明
2016/05/05 Python
Python提取Linux内核源代码的目录结构实现方法
2016/06/24 Python
flask中主动抛出异常及统一异常处理代码示例
2018/01/18 Python
教你使用python画一朵花送女朋友
2018/03/29 Python
Python简单爬虫导出CSV文件的实例讲解
2018/07/06 Python
python实时获取外部程序输出结果的方法
2019/01/12 Python
jupyter 中文乱码设置编码格式 避免控制台输出的解决
2020/04/20 Python
tensorflow模型文件(ckpt)转pb文件的方法(不知道输出节点名)
2020/04/22 Python
如何用Anaconda搭建虚拟环境并创建Django项目
2020/08/02 Python
澳大利亚汽车零部件、音响及配件超市:Automotive Superstore
2018/06/19 全球购物
Carolina Lemke Berlin澳大利亚官网:时尚太阳镜品牌
2019/09/17 全球购物
2014年三八妇女节活动总结
2014/03/01 职场文书
班级出游活动计划书
2014/08/15 职场文书
停车位租赁协议书
2014/09/24 职场文书
教师个人查摆剖析材料
2014/10/14 职场文书
入党积极分子对十八届四中全会期盼的思想汇报
2014/10/17 职场文书
2019自荐信范文集锦!
2019/07/03 职场文书
2019员工保密协议书(3篇)
2019/09/23 职场文书
tensorflow中的梯度求解及梯度裁剪操作
2021/05/26 Python
Java Shutdown Hook场景使用及源码分析
2021/06/15 Java/Android