A simple temperature conversion package
Project description
Degrees converter
Simple library that converts temperature from one unit to another one(e.g. from Celsius to Fahrenheit).
Every method of the class Converter returns a float rounded to the second decimal figure.
Usage
Import the class Converter and create an instance of the class Converter:
from degreesConversion.converter import Converter
conv = Converter()
and then call the methods of the instance with an int or a float value:
print(conv.celFah(0))
# output: 32.0
The methods can accept a string as argument if it's still a number:
print(conv.celFah("0"))
# output: 32.0
print(conv.celFah("zero"))
# output: Couldn't convert string to float.
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
Close
Hashes for degreesconversion-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b9742735ac1c245d42b167825608db243fd60b8e550c4a7ad7418208a49d24e |
|
MD5 | ed343de85135ec6e360692c138dca054 |
|
BLAKE2b-256 | ffa9f45653660eff8f2046ee98269161b56d579410f1bc9ab818b8c870adae38 |