“Cómo convertir Fahrenheit a Celsius en Python” Código de respuesta

Cómo convertir Fahrenheit a Celsius en Python


#!/usr/bin/env python
Celsius = int(raw_input("Enter a temperature in Celsius: "))

Fahrenheit = 9.0/5.0 * Celsius + 32

print "Temperature:", Celsius, "Celsius = ", Fahrenheit, " F"
Harry the Programmer

Cómo convertir Fahrenheit a Celsius en Python

#!/usr/bin/env python
Fahrenheit = int(raw_input("Enter a temperature in Fahrenheit: "))

Celsius = (Fahrenheit - 32) * 5.0/9.0

print "Temperature:", Fahrenheit, "Fahrenheit = ", Celsius, " C"
Harry the Programmer

Respuestas similares a “Cómo convertir Fahrenheit a Celsius en Python”

Preguntas similares a “Cómo convertir Fahrenheit a Celsius en Python”

Más respuestas relacionadas con “Cómo convertir Fahrenheit a Celsius en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código