python数字转换成中文大写_python 人民币数字转大写中文

def digital_to_chinese(digital):

str_digital = str(digital)

chinese = {'1': '壹', '2': '贰', '3': '叁', '4': '肆', '5': '伍', '6': '陆', '7': '柒', '8': '捌', '9': '玖', '0': '零'}

chinese2 = ['拾', '佰', '仟', '万', '厘', '分', '角']

jiao = ''

bs = str_digital.split('.')

yuan = bs[0]

if len(bs) > 1:

jiao = bs[1]

r_yuan = [i for i in reversed(yuan)]

count = 0

for i in range(len(yuan)):

if i == 0:

r_yuan[i] += '圆'

continue

r_yuan[i] += chinese2[count]

count += 1

if count == 4:

count = 0

chinese2[3] = '亿'

s_jiao = [i for i in jiao][:3] # 去掉小于厘之后的

j_count = -1

for i in range(len(s_jiao)):

s_jiao[i] += chinese2[j_count]

j_count -= 1

last = [i for i in reversed(r_yuan)] + s_jiao

last_str = ''.join(last)

print(str_digital)

print(last_str)

for i in range(len(last_str)):

digital = last_str[i]

if digital in chinese:

last_str = last_str.replace(digital, chinese[digital])

print(last_str)

return last_str

if __name__ == '__main__':

digital_to_chinese(123456789.456)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
引用和引用[2]提到了一种方法,可以利用Python将阿拉伯数字化为中文大写。这个方法采用拆分法则,先将大数字拆分成整数部分和小数部分,然后按照仟、万、亿、兆的分位拆分整数部分为四个字符串组成的列表。每个字符串最多包含四个字符。接下来,对每个分位的字符串使用中文大写函数转换成中文大写。最后将转换后的结果合并起来。 具体步骤如下: 1. 将输入的数字拆分成整数部分和小数部分。 2. 将整数部分按照仟、万、亿、兆的分位拆分为四个字符串组成的列表。 3. 对每个分位的字符串使用中文大写函数转换成中文大写。 4. 将转换后的结果合并起来。 这样就能够将输入的数字转换成中文大写数字了。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *3* [Python将阿拉伯数字化为中文大写](https://blog.csdn.net/weixin_32942557/article/details/113722858)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatgptT3_1"}}] [.reference_item style="max-width: 50%"] - *2* [Python数字化为中文大写的实例代码](https://blog.csdn.net/weixin_30578645/article/details/114398149)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatgptT3_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值