Which of these statements will display true in the output?

print number == 5print number >= 0print number != 10print number < 5

Correct! We've assigned 5 to the number variable, so numbers that are exactly 5, greater than or equal to 0 or not equal to 10 will compare as true.

Oh noes! We've assigned 5 to the number variable, so numbers that are exactly 5, greater than or equal to 0 or not equal to 10 will compare as true.