0
I can't pass this python level
Write a program that checks if the water is boiling. Take the integer temperature in Celsius as input and output "Boiling" if the temperature is above or equal to 100. Response: temp = (input()) if temp >= 100: print ("boiling") It answers me output: boiling Expected result: boiling
2 Antworten
+ 1
input() always returns as string. You need to convert it to a number if you want to compare it to a number.
0
temp = int(input())
This should help you.....