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中下划线的使用方法
Mar 27 Python
Python之str操作方法(详解)
Jun 19 Python
开源软件包和环境管理系统Anaconda的安装使用
Sep 04 Python
使用python读取.text文件特定行的数据方法
Jan 28 Python
解决python3中的requests解析中文页面出现乱码问题
Apr 19 Python
Python解压 rar、zip、tar文件的方法
Nov 19 Python
python实现差分隐私Laplace机制详解
Nov 25 Python
Python实现图片批量加入水印代码实例
Nov 30 Python
pygame实现飞机大战
Mar 11 Python
django 多数据库及分库实现方式
Apr 01 Python
Django 解决由save方法引发的错误
May 21 Python
python如何查看网页代码
Jun 07 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
让PHP显示Facebook的粉丝数量方法
2014/01/08 PHP
使用Huagepage和PGO来提升PHP7的执行性能
2015/11/30 PHP
Yii Framework框架使用PHPExcel组件的方法示例
2019/07/24 PHP
PHP实现统计代码行数小工具
2019/09/19 PHP
jquery中常用的SET和GET
2009/01/13 Javascript
jQuery的运行机制和设计理念分析
2011/04/05 Javascript
从数据结构的角度分析 for each in 比 for in 快的多
2013/07/07 Javascript
返回页面顶部top按钮通过锚点实现(自写)
2013/08/30 Javascript
使用ajaxfileupload.js实现ajax上传文件php版
2014/06/26 Javascript
轻松创建nodejs服务器(1):一个简单nodejs服务器例子
2014/12/18 NodeJs
jQuery实用技巧必备(上)
2015/11/02 Javascript
基于jQuery实现弹幕APP
2017/02/10 Javascript
微信小程序实现实时圆形进度条的方法示例
2017/02/24 Javascript
浅谈JavaScript find 方法不支持IE的问题
2017/09/28 Javascript
详解webpack babel的配置
2018/01/09 Javascript
关闭Vue计算属性自带的缓存功能方法
2018/03/02 Javascript
移动端如何用下拉刷新的方式实现上拉加载
2018/12/10 Javascript
解决Vue中的生命周期beforeDestory不触发的问题
2020/07/21 Javascript
JS获取当前时间戳方法解析
2020/08/29 Javascript
javascript贪吃蛇游戏设计与实现
2020/09/17 Javascript
解决Antd Table组件表头不对齐的问题
2020/10/27 Javascript
[01:06] DOTA2英雄背景故事第三期之秩序法则光之守卫
2020/07/07 DOTA
python实现C4.5决策树算法
2018/08/29 Python
PyCharm鼠标右键不显示Run unittest的解决方法
2018/11/30 Python
Python求一批字符串的最长公共前缀算法示例
2019/03/02 Python
详解Python爬取并下载《电影天堂》3千多部电影
2019/04/26 Python
pandas DataFrame 行列索引及值的获取的方法
2019/07/02 Python
Python爬取新型冠状病毒“谣言”新闻进行数据分析
2020/02/16 Python
python+Selenium自动化测试——输入,点击操作
2020/03/06 Python
TensorFlow中如何确定张量的形状实例
2020/06/23 Python
CSS3 重置iphone浏览器按钮input,select等表单元素的默认样式
2014/10/11 HTML / CSS
英国最大的汽车交易网站:Auto Trader UK
2016/09/23 全球购物
台湾线上百货零售购物平台:friDay购物
2017/08/18 全球购物
北卡罗来纳州豪华家具和家居装饰店:Carolina Rustica
2018/10/30 全球购物
如何利用cmp命令比较文件
2016/04/11 面试题
个人贷款承诺书
2014/03/28 职场文书