A simple python module to convert numbers to textual words For Example :-
Input :- 5678834
Output:- 'Five Million, Six Hundred Seventy Eight Thousand, Eight Hundred Thirty Four'
Input :- 2
Output:- 'Two'
Input :- 1232467234641294
Output:- 'One Quadrillion, Two Hundred Thirty Two Trillion, Four Hundred Sixty Seven Billion, Two Hundred Thirty Four Million, Six Hundred Fourty One Thousand, Two Hundred Ninety Four'
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Python3+
Just Copy and paste the following in your terminal
git clone
cd num2text
sudo ./setup.py
This project can be used as a module as well as a command line program
from num2text import *
num2text(num)
usage: num2text.py [-h] [-d DELIMITER] Number
- Utkarsh Yadav
This project is licensed under the MIT License - see the LICENSE.md file for details
- Inspiration : Made this a long long time ago don't remember why I made this