Skip to content

N3dal/numbers-to-written-numbers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

just simple script for convert numbers to written form.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages