Post

@PythonPr The output is Error.
Because the print statement in the else clause is missing an ending quote and brace
Let's follow each other
English

@PythonPr Answer: B) Fail
Explanation:
score = 40, so the condition score > 50 is False.
The else block runs, and it prints "Fail".
English

@PythonPr It’s error .. bcz the code will not even run else is missing a colon and the print("Fail line isn’t closed.. so python will throw a syntax error
English

@PythonPr C) Error because the else print statement is incomplete
English

@PythonPr It will give an error, because the print("fail part is not complete
English

@PythonPr B
Because with the conditional statement given, anything less than 50 is automatically fail.
English

@PythonPr C. Error
No closing bracket.
esle (failed)
Ant the output is failed
English

@PythonPr Indentation is missing after if and else
Colon (:) is missing after else
The closing quote is missing in "Fail"
so output= Error
English



























