0
Change line 4 to btn>0
Change line 11 to btn<=0
Done!!! đ that is all
0
Change line 34 right: 5px;
0
Please i need help on python while loop
0
ef search(text,word):
text = input()
word = input()
if word == text:
return "Word found"
else:
return "Word not found"
print(search(text,word))
can somene tell what's wrong in this code line?
much apreciation, i'm clopet noob in python
0
total = 0
#your code goes here
age = int(input())
x = 0
while x<6:
if (age > 2):
total += 100
age=int(input())
continue
else
age=int(input())
continue
x += x
print (total)
0
Da silva
You code is not correct you wrote ef search instead of def search
0
mb567
- 1
Hola
- 1
Ma
- 2
Please give me a code
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.
Sample Input
105
Sample Output
Boiling