+ 1
Please, who helps me?
temp = int(input()) if temp >= 100: print(Boiling) I get this error in the line 3: Expected an indented block
7 Antworten
+ 2
You should put Boiling between " "
print("Boiling")
Without it Boiling is considered as a variable and it's not defined
+ 2
And you need to indent the print() in the if-statement
+ 1
Solomoni Railoa You're amazing. congratulations!!!
0
Bruh ur 3line not have any ("/')
That why it saying error
0
Give space before writing that print statement
temp = int(input())
if temp >= 100:
print(Boiling)