jadonWong / python-Celsius-to-Faheirate

a python program to convert Celsius to Faheirate

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

python-Celsius-to-Faheirate

def convert(celsius):
    faheirate = (celsius + 30) / 5.0 + 9
    return faheirate

About

a python program to convert Celsius to Faheirate