An open API service indexing awesome lists of open source software.

https://github.com/darkcode01/number_to_string

This is a module capable of returning the amount of a number literally.
https://github.com/darkcode01/number_to_string

Last synced: 4 months ago
JSON representation

This is a module capable of returning the amount of a number literally.

Awesome Lists containing this project

README

          

This is a module capable of returning the amount of a number
literally.

This module is for educational purposes, is developed based on
recursion looking for a simple and friendly way for people who
are beginning to learn python.

example:
~$ python3 number_to_string.py 1,000
1,000 -> mil

Note: The number entered must be separated with commas.

--------------------------------------------------------------