30-Days-of-AI-ML / Playing-with-Python-Project-1

This is the day 1 project which involves playing with some easily deployble python libraries
GNU General Public License v3.0
0 stars 21 forks source link

Convert Temperatures #1

Open Anustup900 opened 3 years ago

Anustup900 commented 3 years ago

Write a Python code to change temperatures : From Celcius to Farenhite & ViceVersa Input your temperature and change it

mrunalvilas commented 3 years ago

can i work on this issue

Anustup900 commented 3 years ago

yes sure go ahead @mrunalvilas , others can also work

hari3693 commented 3 years ago

Celcius to Farenhite

c = Celcius

f = Farenhite

c=1 f=(c*2)+30 f

Farenhite to Celcius

f=0 c=(f-32)/1.8 c