Write a program that checks if the water is boiling. Take the integer temperature in Celsius as input and output "Boiling" if t | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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")

16th Sep 2021, 11:18 PM
Oti Stephen
Oti Stephen - avatar
5 Answers
+ 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.
17th Sep 2021, 1:08 AM
Python Learner
Python Learner - avatar
+ 2
Show your attempt first, please
16th Sep 2021, 11:20 PM
PresidentOfYes12
PresidentOfYes12 - avatar
+ 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")
17th Sep 2021, 1:26 AM
Abhishek Kumar
Abhishek Kumar - avatar
0
Please help
3rd Jun 2022, 6:04 PM
Achmed Ladid
- 1
What I am doing wrong temp = int(input() temp =76 temp <=100 print() temp = int(input() temp =132 temp >=100 print("Boiling")
3rd Jun 2022, 6:01 PM
Achmed Ladid