/numbers-to-written-numbers

just simple script for convert numbers to written form.

Primary LanguagePython

Numbers to Words converter.

wallpaper

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 python and ❤️.

how it is works: 121 => "one hundred and twenty-one" 3.14 => "three point fourteen".

Usage:

    num2written("your-number-here")

example:

    written_number = num2written(1234)    
    print(written_number)

Valid Inputs:

    num2written(1234)
    num2written("1234")
    num2written(12_345)
    num2written("12_345")
    num2written("-11_625")
    num2written(-11_625)

TODO:

  • make gui app using either tkinter or gtk.
  • make it work for Floating points numbers.
  • make the script accept args from the Terminal directly.