Код: Выделить всё
def convert_c(celsius):
c = float(celsius)
c = (c-32)*5/9
return(c)
for
c = (temp-32)*5/9
Подробнее здесь: https://stackoverflow.com/questions/619 ... to-celsius
Код: Выделить всё
def convert_c(celsius):
c = float(celsius)
c = (c-32)*5/9
return(c)
for
c = (temp-32)*5/9