python数字转对应中文的方法总结


Posted in Python onAugust 02, 2021

本文操作环境:

windows7系统,DELL G3电脑,python3.5版

python实现将阿拉伯数字转换成中文

第一种转换方式:

1  -->  一
    12   -->  一二
def num_to_char(num):
    """数字转中文"""
    num=str(num)
    new_str=""
    num_dict={"0":u"零","1":u"一","2":u"二","3":u"三","4":u"四","5":u"五","6":u"六","7":u"七","8":u"八","9":u"九"}
    listnum=list(num)
    # print(listnum)
    shu=[]
    for i in listnum:
        # print(num_dict[i])
        shu.append(num_dict[i])
    new_str="".join(shu)
    # print(new_str)
    return new_str

第二种转换方式:

1   -->   一
    12  -->   十二
    23  -->  二十三
_MAPPING = (u'零', u'一', u'二', u'三', u'四', u'五', u'六', u'七', u'八', u'九', u'十', u'十一', u'十二', u'十三', u'十四', u'十五', u'十六', u'十七',u'十八', u'十九')
_P0 = (u'', u'十', u'百', u'千',)
_S4 = 10 ** 4
def _to_chinese4(num):
    assert (0 <= num and num < _S4)
    if num < 20:
        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):
            val = int(val)
            if val != 0:
                result += _P0[idx] + _MAPPING[val]
                if idx < c - 1 and lst[idx + 1] == 0:
                    result += u'零'
        return result[::-1]

实例扩展:

#!/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数字转对应中文的方法总结的详细内容,更多关于python数字怎么转对应中文的资料请关注三水点靠木其它相关文章!

Python 相关文章推荐
Python代码的打包与发布详解
Jul 30 Python
跟老齐学Python之传说中的函数编写条规
Oct 11 Python
用Python计算三角函数之acos()方法的使用
May 15 Python
Windows下Python2与Python3两个版本共存的方法详解
Feb 12 Python
Python实现句子翻译功能
Nov 14 Python
python简单图片操作:打开\显示\保存图像方法介绍
Nov 23 Python
浅谈pandas筛选出表中满足另一个表所有条件的数据方法
Feb 08 Python
python 命名规范知识点汇总
Feb 14 Python
python print 格式化输出,动态指定长度的实现
Apr 12 Python
浅谈TensorFlow之稀疏张量表示
Jun 30 Python
Python+Appium实现自动抢微信红包
May 21 Python
Python Matplotlib绘制等高线图与渐变色扇形图
Apr 14 Python
Python List remove()实例用法详解
Aug 02 #Python
Python中基础数据类型 set集合知识点总结
Aug 02 #Python
python unittest单元测试的步骤分析
Aug 02 #Python
python元组打包和解包过程详解
Aug 02 #Python
python字典进行运算原理及实例分享
Aug 02 #Python
Python中可变和不可变对象的深入讲解
Python基础数据类型tuple元组的概念与用法
Aug 02 #Python
You might like
文件上传类
2006/10/09 PHP
基于mysql的bbs设计(二)
2006/10/09 PHP
php的memcached客户端memcached
2011/06/14 PHP
PHP利用MySQL保存session的实现思路及示例代码
2014/09/09 PHP
ThinkPHP3.2.3数据库设置新特性
2015/03/05 PHP
浅谈PHP中其他类型转化为Bool类型
2016/03/28 PHP
javascript第一课
2007/02/27 Javascript
Javascript 面试题随笔
2011/03/31 Javascript
jQuery之ajax删除详解
2014/02/27 Javascript
jquery实现的网页自动播放声音
2014/04/30 Javascript
JavaScript-RegExp对象只能使用一次问题解决方法
2014/06/23 Javascript
node.js中的console.dir方法使用说明
2014/12/10 Javascript
JS实现5秒钟自动封锁div层的方法
2015/02/20 Javascript
js获取json中key所对应的value值的简单方法
2020/06/17 Javascript
详谈js原型继承的一些问题
2017/09/06 Javascript
JS使用new操作符创建对象的方法分析
2019/05/30 Javascript
React实现评论的添加和删除
2020/10/20 Javascript
记录一次websocket封装的过程
2020/11/23 Javascript
Vue仿Bibibili首页的问题
2021/01/21 Vue.js
用python写一个windows下的定时关机脚本(推荐)
2017/03/21 Python
matplotlib.pyplot绘图显示控制方法
2019/01/15 Python
使用python实现mqtt的发布和订阅
2019/05/05 Python
python实现桌面气泡提示功能
2019/07/29 Python
Python常用库大全及简要说明
2020/01/17 Python
Python continue语句实例用法
2020/02/06 Python
Django实现从数据库中获取到的数据转换为dict
2020/03/27 Python
pyecharts调整图例与各板块的位置间距实例
2020/05/16 Python
Volcom英国官方商店:美国殿堂级滑板、冲浪、滑雪服装品牌
2019/03/13 全球购物
C有"按引用传递"吗
2016/09/06 面试题
函授本科自我鉴定
2014/02/04 职场文书
四议两公开实施方案
2014/03/28 职场文书
领导干部学习“三严三实”思想汇报
2014/09/15 职场文书
2014年第四季度入党积极分子思想汇报(十八届四中全会)
2014/11/03 职场文书
2014年社区宣传工作总结
2014/12/02 职场文书
MySQL InnoDB ReplicaSet(副本集)简单介绍
2021/04/24 MySQL
云服务器部署 Web 项目的实现步骤
2022/06/28 Servers