+ 1
Write a program that checks if the water is boiling. Take the integer temperature in Celsius as input and output "Boiling" if t
How to solve it This is my solvings temp = int(input()) if temp >= 100: print("Boilling")
5 Antworten
+ 3
Hi kofi!
Your logic is fine. But problem is that you have an additional character(l) in your output. I mean you spelled Boiling wrongly. Keep in your mind, your output must be exactly same as expected in a challenge since Python is a case sensitive programming language.
+ 2
Show your attempt first, please
+ 1
https://code.sololearn.com/cV76KMbg8Gyi
Temperature=int(input("Enter Temperature in celcius="))
if Temperature>=100:
print("\nWater is boiling")
else:
print("\nTemperature is below boiling point of Water")
0
Please help
- 1
What I am doing wrong
temp = int(input()
temp =76
temp <=100
print()
temp = int(input()
temp =132
temp >=100
print("Boiling")