python人民币小写转大写辅助工具


Posted in Python onJune 20, 2018

本文实例为大家分享了python人民币大小写转换的具体代码,供大家参考,具体内容如下

大家应该都知道,银行打印账单有时候会跟上人民币的阿拉伯数字以及人民币汉字大写写法,转换的过程中有一定的逻辑难度,较为麻烦,所以笔者心血来潮,花了点时间简单实现了一下这一转换过程,以供初学者参考。

输入样例:

123.22

输出样例:

壹佰贰拾叁圆贰角贰分

参考代码:

#!/usr/bin/env python 
# encoding: utf-8 
 
from __future__ import print_function 
import sys 
import re 
import base64 
import time 
import os 
import getpass 
 
reload(sys) 
 
sys.setdefaultencoding("utf-8") 
 
 
char_arr_01 = [u"零".decode("utf8"), u"壹".decode("utf8"), u"贰".decode("utf8"), u"叁".decode("utf8"), u"肆".decode( 
  "utf8"), u"伍".decode("utf8"), u"陆".decode("utf8"), u"柒".decode("utf8"), u"捌".decode("utf8"), u"玖".decode("utf8")]; 
char_arr_02 = [u"圆".decode("utf8"), u"拾".decode("utf8"), u"佰".decode("utf8"), u"仟".decode("utf8"), u"万".decode("utf8"), u"拾".decode("utf8"), u"佰".decode("utf8"), u"仟".decode( 
  "utf8"), u"亿".decode("utf8"), u"拾".decode("utf8"), u"佰".decode("utf8"), u"仟".decode("utf8"), u"万".decode("utf8"), u"拾".decode("utf8"), u"佰".decode("utf8")] 
char_arr_03 = [u"分".decode("utf8"), u"角".decode("utf8")] 
 
def calcRMB(): 
  sum_arr = [] 
  in_str_dot = "" 
  in_str_Big = "" 
  flag = 0 
  dot_count = 0 
  in_str = raw_input("Please input number : ") 
  for i in in_str: 
    if i == '.': 
      dot_count += 1 
    elif ord(i) <= ord('z') and ord(i) >= ord('A'): 
      print("Error") 
      return 
  if len(in_str) > 12 or dot_count > 1: 
    print("Error") 
    return 
  in_str = unicode(in_str).decode("utf8") 
  out_str = "" 
  if in_str.find('.') != -1: 
    flag = 1 
  sum_arr = in_str.split('.') 
  in_str_Big = sum_arr[0] 
  if flag==1: 
    in_str_dot = sum_arr[1] 
  for i in range(len(in_str_Big)): 
    if cmp(in_str_Big[i],'0') == 0 and (len(in_str_Big)-1-i)%4 != 0: 
      out_str = out_str + char_arr_01[ord(in_str_Big[i])-ord('0')] 
    else: 
      out_str = out_str + char_arr_01[ord(in_str_Big[i])-ord('0')] 
      out_str = out_str + char_arr_02[len(in_str_Big)-1-i] 
  while out_str.find(u"零零".decode("utf8")) != -1: 
    out_str = out_str.replace(u"零零".decode("utf8"), u"零".decode("utf8")) 
  out_str = out_str.replace(u"零亿".decode("utf8"),u"亿".decode("utf8")) 
  out_str = out_str.replace(u"零万".decode("utf8"),u"万".decode("utf8")) 
  if out_str != u"零元".decode("utf8"): 
    out_str = out_str.replace(u"零圆".decode("utf8"),u"圆".decode("utf8")) 
  if len(in_str_dot) > 2 and flag == 1: 
    print("False !!") 
    return 
  if flag == 1: 
    for i in range(len(in_str_dot)): 
      out_str = out_str + char_arr_01[ord(in_str_dot[i])-ord('0')] 
      out_str = out_str + char_arr_03[len(in_str_dot)-1-i] 
 
  print(out_str) 
 
def main(): 
  while 1: 
    os.system("cls") 
    calcRMB() 
    print() 
    end_flag = raw_input("Try Again ? (y/n)") 
    if end_flag == 'y' or end_flag == 'Y': 
      continue 
    elif end_flag == 'n' or end_flag == 'N': 
      break 
    else: 
      print("\nError!!") 
      break 
 
if __name__ == '__main__': 
  main()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
学习python 之编写简单乘法运算题
Feb 27 Python
Python实现计算最小编辑距离
Mar 17 Python
Python的爬虫程序编写框架Scrapy入门学习教程
Jul 02 Python
代码详解django中数据库设置
Jan 28 Python
Python中请不要再用re.compile了
Jun 30 Python
python画图--输出指定像素点的颜色值方法
Jul 03 Python
Django 使用easy_thumbnails压缩上传的图片方法
Jul 26 Python
python Event事件、进程池与线程池、协程解析
Oct 25 Python
python实现高斯投影正反算方式
Jan 17 Python
如何在windows下安装Pycham2020软件(方法步骤详解)
May 03 Python
Django实现微信小程序支付的示例代码
Sep 03 Python
深入理解python协程
Jun 15 Python
python简易远程控制单线程版
Jun 20 #Python
python通过Windows下远程控制Linux系统
Jun 20 #Python
Python实现求解一元二次方程的方法示例
Jun 20 #Python
python实现NB-IoT模块远程控制
Jun 20 #Python
Python中pandas模块DataFrame创建方法示例
Jun 20 #Python
python自动发送邮件脚本
Jun 20 #Python
Python使用numpy模块创建数组操作示例
Jun 20 #Python
You might like
php面向对象全攻略 (十一)__toString()用法 克隆对象 __call处理调用错误
2009/09/30 PHP
浅谈htmlentities 、htmlspecialchars、addslashes的使用方法
2016/12/09 PHP
javascript 函数调用规则
2009/08/26 Javascript
jQuery.prototype.init选择器构造函数源码思路分析
2013/02/05 Javascript
jquery使用ajax实现微信自动回复插件
2014/04/28 Javascript
javascript数组操作方法小结和3个属性详细介绍
2014/07/05 Javascript
不到30行JS代码实现Excel表格的方法
2014/11/15 Javascript
jquery实现textarea输入框限制字数的方法
2015/01/15 Javascript
JS实现简洁、全兼容的拖动层实例
2015/05/13 Javascript
实例代码详解jquery.slides.js
2015/11/16 Javascript
详解Document.Cookie
2015/12/25 Javascript
解决Mac安装thrift因bison报错的问题
2018/05/17 Javascript
深入理解es6块级作用域的使用
2019/03/28 Javascript
js中关于Blob对象的介绍与使用
2019/11/29 Javascript
基于vue-draggable 实现三级拖动排序效果
2020/01/10 Javascript
在HTML中使用JavaScript的两种方法
2020/12/24 Javascript
Vue 3自定义指令开发的相关总结
2021/01/29 Vue.js
跟老齐学Python之有点简约的元组
2014/09/24 Python
python统计文本字符串里单词出现频率的方法
2015/05/26 Python
Python语言描述机器学习之Logistic回归算法
2017/12/21 Python
python将一个英文语句以单词为单位逆序排放的方法
2018/12/20 Python
Anaconda3中的Jupyter notebook添加目录插件的实现
2020/05/18 Python
CSS中越界问题的经典解决方案【推荐】
2016/04/19 HTML / CSS
CSS3属性 line-clamp控制文本行数的使用
2020/03/19 HTML / CSS
美国和加拿大房车出售在线分类广告:RVT.com
2018/04/23 全球购物
美国最大的半成品净菜电商:Blue Apron(蓝围裙)
2018/04/27 全球购物
eDreams葡萄牙:全球最大的在线旅行社之一
2019/04/15 全球购物
汉米尔顿手表官网:Hamilton
2020/09/13 全球购物
C语言笔试题回忆
2015/04/02 面试题
社区志愿者活动总结
2014/06/26 职场文书
先进个人自荐书
2015/03/06 职场文书
朋友聚会开场白
2015/06/01 职场文书
小人国观后感
2015/06/11 职场文书
红色经典观后感
2015/06/18 职场文书
高二化学教学反思
2016/02/22 职场文书
Python实现Hash算法
2022/03/18 Python