程序实现功能,将4位数字字符串转为人民币大写形式
代码如下:
def four_read(four_ele_str):
table=str.maketrans('0123456789','零壹贰叁肆伍陆柒捌玖')
integer_unit1=['仟','佰','拾','']
four_ele_str=four_ele_str.translate(table)
finial_str=''
i=0
while i<4:
if four_ele_str[i]=='零' and i==0:
i+=1
finial_str='零'
continue
elif four_ele_str[i]=='零':
i+=1
continue
finial_str=finial_str+four_ele_str[i]+integer_unit1[i]
i+=1
return(finial_str)
重点:
- 建立翻译表table
table=str.maketrans('0123456789','零壹贰叁肆伍陆柒捌玖')
- 利用翻译表翻译:
four_ele_str=four_ele_str.translate(table)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)