Conversión Celsius a Fahrenheit


Descripción

Escribe un programa que le pida al usuario una temperatura en grados Celsius, la convierta a grados Fahrenheit e imprima por pantalla la temperatura convertida.

Ejemplo de Ejecución

Introduzca una temperatura en Celsius: 20
La temperatura convertida a Fahrenheit es: 68

Notas

La fórmula para convertir a grados Fahrenheit es °F = (°C × 9/5) + 32.

Solución

Mostrar solución
temp_celsius = int(input('Introduzca una temperatura en Celsius: '))
temp_fahrenheit = (temp_celsius * 9/5) + 32
print('La temperatura convertida a Fahrenheit es: ' + str(temp_fahrenheit))

Probar solución en Google Colab

Fuente del ejercicio: https://es.py4e.com/html3/02-variables