Generation

generate functionTue, 06 Jun 2023

Dado el siguiente enunciado cree la expresion en python asociada: -Cree una variable temp y asignale de valor 24 -Convierta el valor temp de Celsius a Fahrenheit al multiplicar tempo por 1.8 y sumarle 32; asocie el resultado con el valor temp ¿Cual es el nuevo valor de temp?

temp = 24 temp = (temp * 1.8) + 32 print (temp)

Want to kickstart your project?Use the new AI Studio to create your code