#WSQ05


#WSQ05
I just used an if to make that the program say when the water does boil and when not.
These pages help me. http://www.mclibre.org/consultar/python/lecciones/python_if_else.html
program:
tem=int(input(“give me the temperature in Fahrenhei.”))
c=5*(tem-32)/9
print(“la temperatura en celsius es “,c)
if c < 100:
    print(“Water does not boil at this temperature (under typical conditions).”)
else:
    print(“Water does boil at this temperature (under typical conditions).”) 

#WSQ05

CC BY 4.0 #WSQ05 by Juan Antonio Olvera Robles is licensed under a Creative Commons Attribution 4.0 International License.

Comments are closed.