econvert

Hassle-free convertions


License
MIT
Install
pip install econvert==0.0.1

Documentation

econvert

First run the following command in a cmd window

pip install econvert

Then, Create a new python script

Open the script

Import the module

from econvert import econvert as ec

celsius to fahrenheit

ec.c_to_f(100)

The 100 can be changed to any value you wish to convert fahrenheit to celsius

ec.f_to_c(100)

The 100 can be changed to any value you wish to convert Full code

from econvert import econvert as ec

f = ec.f_to_c(100)

print(f)

c = ec.c_to_f(100)

print(c)

More convertions will be added soon!!