如何在 Python 中将数字转换为单词


在 Python 中,字符串类 str 的构造函数可用于将数字转换为 Python 中的字符串。例如,

i = 10050
str_i = str(i)
print(type(str_i))

将会给出输出

<class 'str'>

但是,如果你希望 将整数转换为单词,例如将 99 转换为九十九,则必须使用外部程序包或自己构建一个。pynum2word 模块非常适合此任务。你可以使用以下方法进行安装

$ pip install pynum2word

然后以以下方式使用

>>> import num2word
>>> num2word.to_card(16)
'sixteen'
>>> num2word.to_card(23)
'twenty-three'
>>> num2word.to_card(1223)
'one thousand, two hundred and twenty-three'

更新时间: 2020 年 6 月 17 日

1K+ 浏览量

开启你的 职业生涯

通过完成课程获得认证

开始
广告