01 / 06
Show what a comparison answers
You have been writing score > 60 after if. That bit on its own has an answer too, and you can see it by handing it to print.
What comes out is True or False — values for holds and does not hold.
print(80 > 60)print(40 > 60)Result
True False