Solución
solution.tsTypeScript
def fahrenheit_to_celsius(fahrenheit: float) -> float:
# Escribe tu solución aquí
celsius: float = (fahrenheit - 32) * 5 / 9
return round(celsius , 2)0respuestas
def fahrenheit_to_celsius(fahrenheit: float) -> float:
# Escribe tu solución aquí
celsius: float = (fahrenheit - 32) * 5 / 9
return round(celsius , 2)Aún no hay respuestas
¡Sé el primero en responder!
Recuerda ser amable. Estás comentando la solución de otra persona. Comparte tu perspectiva de forma constructiva y respetuosa.