simple script to convert 'Integers' and 'Floats' to words, in simple words convert any number to the written form of it and return it as string.
This project built with and ❤️.
how it is works:
121 => "one hundred and twenty-one"
3.14 => "three point fourteen".
num2written("your-number-here")
written_number = num2written(1234)
print(written_number)
num2written(1234)
num2written("1234")
num2written(12_345)
num2written("12_345")
num2written("-11_625")
num2written(-11_625)
- make gui app using either tkinter or gtk.
- make it work for Floating points numbers.
- make the script accept args from the Terminal directly.