Answers for "def f(x) python"

0

def f(x) python

def fahrenheit(T_in_celsius):
    """ Gibt die Temperatur T_in_celsius in Grad Fahrenheit zurück """
    return (T_in_celsius * 9 / 5) + 32
for t in (22.6, 25.8, 27.3, 29.8):
    print(t, ": ", fahrenheit(t))
Posted by: Guest on March-10-2021

Python Answers by Framework

Browse Popular Code Answers by Language