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 生成不重复的随机数的代码
May 15 Python
python numpy函数中的linspace创建等差数列详解
Oct 13 Python
tensorflow中next_batch的具体使用
Feb 02 Python
使用python和pygame绘制繁花曲线的方法
Feb 24 Python
使用实现pandas读取csv文件指定的前几行
Apr 20 Python
django2+uwsgi+nginx上线部署到服务器Ubuntu16.04
Jun 26 Python
Python解决走迷宫问题算法示例
Jul 27 Python
python交互界面的退出方法
Feb 16 Python
基于多进程中APScheduler重复运行的解决方法
Jul 22 Python
python实现画出e指数函数的图像
Nov 21 Python
Python基础之教你怎么在M1系统上使用pandas
May 08 Python
python中%格式表达式实例用法
Jun 18 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面向对象重点知识分享
2019/09/27 PHP
GWT中复制到剪贴板 js+flash实现复制 兼容性比较好
2010/03/07 Javascript
silverlight线程与基于事件驱动javascript引擎(实现轨迹回放功能)
2011/08/09 Javascript
jQuery EasyUI API 中文文档 - ValidateBox验证框
2011/10/06 Javascript
JQuery验证工具类搜集整理
2013/01/16 Javascript
jQuery cdn使用介绍
2013/05/08 Javascript
一个简单的JS时间控件示例代码(JS时分秒时间控件)
2013/11/22 Javascript
AngularJs页面筛选标签小功能
2016/08/01 Javascript
ReactNative页面跳转实例代码
2016/09/27 Javascript
Web 开发中Ajax的Session 超时处理方法
2017/01/19 Javascript
canvas仿iwatch时钟效果
2017/03/06 Javascript
Angular2 自定义validators的实现方法
2017/07/05 Javascript
基于VUE移动音乐WEBAPP跨域请求失败的解决方法
2018/01/16 Javascript
vue代码分割的实现(codesplit)
2018/11/13 Javascript
微信公众号平台接口开发 获取access_token过程解析
2019/08/14 Javascript
Flutter实现仿微信底部菜单栏功能
2019/09/18 Javascript
JS+DIV实现拖动效果
2020/02/11 Javascript
使用 Opentype.js 生成字体子集的实例代码详解
2020/05/25 Javascript
Python中有趣在__call__函数
2015/06/21 Python
django 在原有表格添加或删除字段的实例
2018/05/27 Python
python安装requests库的实例代码
2019/06/25 Python
python pytest进阶之xunit fixture详解
2019/06/27 Python
Python @property及getter setter原理详解
2020/03/31 Python
科茨沃尔德家居商店:Scotts of Stow
2018/06/29 全球购物
戴森比利时官方网站:Dyson BE
2020/10/03 全球购物
家长给孩子的表扬信
2014/01/17 职场文书
员工拓展培训方案
2014/02/15 职场文书
秋游活动策划方案
2014/02/16 职场文书
《匆匆》教学反思
2014/02/22 职场文书
环保专项行动方案
2014/05/12 职场文书
2014中学教师节广播稿
2014/09/10 职场文书
交通事故赔偿协议书
2014/10/16 职场文书
民主评议政风行风活动心得体会
2014/10/29 职场文书
师范生见习报告
2014/10/31 职场文书
开平碉楼导游词
2015/02/06 职场文书
Python控制台输出俄罗斯方块的方法实例
2021/04/17 Python