如何使用 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'
广告