# -*- coding: utf-8 -*- """ Created on Tue Jun 25 09:01:36 2024 @author: henry """ def c_to_f (celsius): fah = celsius*(9/5) + 32 return fah temps = [0, 37, 38, 100] for x in temps: print(c_to_f(x))