Welcome to...

That's a simple project to automatically convert any temperature value.

I made this project, just for study in Python.



How to use?

Start cloning the path.

01. Create a folder on your computer.

1.1.Be sure you have Python Installed, open CMD and type "Python" if is be installed, just continue the tutorial. ( if you don't have Python installed, enter in Python Org and Install the last version.

02.Enter in folder and open the terminal or CMD.
If you use Windows, try:

- WIN + R
- Search: cmd. And press enter.
- Type: cd "your/file/path/"


If you use Linux, try:

- CTRL + ALT + T. And Search: cd "/your/file/path/"



03. Type: python ./main.py



04. Enjoy :D

Formula Types:

K -> C: C = K - 273;
K -> F: (K-273) * 1,8 + 32;
C -> K: K = C + 273;
C -> F: F = C * 1,8 + 32;
F -> C: F = (F-32) / 1,8;
F -> K: K = (F-32) * 5/9 + 273;