A Python module to convert numerical values into their word representation.
Project description
wordify
Wordify is a Python class that converts a given number into its word representation. It can convert numbers up to centillions.
Usage
-
From
converterimport the needed class (you haveIntegerConverterandDecimalConverter)from wordify.converter import IntegerConverter from wordify.converter import DecimalConverter
-
Create an instance of the
Converterclass by providing a number to be converted.int_number = 12345 int_converter = IntegerConverter(int_number) dec_number = 123.45 dec_converter = DecimalConverter(dec_number)
-
Convert the number to its word representation using the
convertmethod.int_word_representation = int_converter.convert() dec_word_representation = dec_converter.convert()
-
Print the word representation.
print(int_word_representation) # output: twelve thousand and three hundred forty five print(dec_word_representation) # output: one hundred twenty three point four five
Example
from converter import IntegerConverter
# Create a Converter instance with a number
number = 12345
converter = IntegerConverter(number)
# Convert the number to words
word_representation = converter.convert()
# Print the word representation
print(word_representation) # output: twelve thousand and three hundred forty five
Customization
You can set a new number for conversion using the set_number method.
converter.set_number(98765)
After setting the new number, you need to call the convert method again to obtain the word representation.
License
The code in this repository is licensed under the MIT License.
You can find the full text of the license in the LICENSE file. For more information, please visit the repository on GitHub.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wordify-1.5.0.tar.gz.
File metadata
- Download URL: wordify-1.5.0.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5bab037649944c6dd4ddadf7f52b2fa0032171aa0e5061dc73c84806332ce1b
|
|
| MD5 |
59f58ba6cc808420f68ba7e05c1b4d88
|
|
| BLAKE2b-256 |
5abf8cada5a47bf364868e81e5b4c5e28ac654bb969a43ed8fc6d919f0cfbc79
|
File details
Details for the file wordify-1.5.0-py3-none-any.whl.
File metadata
- Download URL: wordify-1.5.0-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a87e52eac4b983622f1963ef3846e677874e03c93523ca04146324a5d41b48b5
|
|
| MD5 |
3a9882ff8c9b4741fa8ea0619cc658e6
|
|
| BLAKE2b-256 |
34a9bbb7289b8f1e10391f2d29e163bcd1ade8dc0e0dfbbb7c167992dbcb4bf6
|