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.
- Host: GitHub
- URL: https://github.com/darkcode01/number_to_string
- Owner: DarkCode01
- License: mit
- Created: 2018-01-09T00:29:59.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-16T05:09:36.000Z (about 8 years ago)
- Last Synced: 2025-07-25T05:36:37.340Z (7 months ago)
- Language: Python
- Size: 1.63 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.
--------------------------------------------------------------