阿拉伯數字金額轉中文大寫 (python實現)

分析 分小數和整數部分進行處理 末尾的零應捨棄 中間有連續多個零,只取一個零 整數部分從右往左以4位爲步長掃描 實現 # -*- coding: utf-8 -*- from __future__ import unicode_literals def convert(n): units = ['', '萬', '億'] nums = ['零', '壹', '貳', '叄',
相關文章
相關標籤/搜索