“Celsius a Fahrenheit 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

Celsius a Fahrenheit en Python

def farh(cel):
    return (cel *(9/5)) + 32
  while True:
c = int(input("Enter celcius to convert in farhrenhite :"))
f = farh(c)
print("Fahreheit Temperature is " + str(f))
Coding boy Hasya

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

Código de Python para convertir Celsius en Fahrenheit

c=  int(input(" Temperature in Centigrade: "))
f= (9/5*(int(c))) +32
print(" Temperature in Fahrenheit: ", f)
MD. SHARIFUL ISLAM

Respuestas similares a “Celsius a Fahrenheit en Python”

Preguntas similares a “Celsius a Fahrenheit en Python”

Más respuestas relacionadas con “Celsius a Fahrenheit en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código