Objectivo
Desarrolla un programa en Python que le pida al usuario una temperatura en grados Celsius y la convierta a grados Kelvin y Fahrenheit. Utilice las siguientes fórmulas para la conversión:
Kelvin = Celsius + 273
Fahrenheit = Celsius * 1,8 + 32
El programa debería mostrar la temperatura tanto en grados Kelvin como en grados Fahrenheit.
Ejemplo de ejercicio de Python
Mostrar código Python
# Prompt the user to enter a temperature in Celsius
celsius = float(input("Please enter a temperature in Celsius: "))
# Convert the temperature to Kelvin
kelvin = celsius + 273
# Convert the temperature to Fahrenheit
fahrenheit = celsius * 1.8 + 32
# Display the temperature in both Kelvin and Fahrenheit
print(f"The temperature in Kelvin is {kelvin}")
print(f"The temperature in Fahrenheit is {fahrenheit}")
Output
Please enter a temperature in Celsius: 25
The temperature in Kelvin is 298.0
The temperature in Fahrenheit is 77.0
Código de ejemplo copiado
Comparte este ejercicio de Python