which statement will check if a is equal
Answers
Answered by
0
Answer:
Operator name Usage Result
Equal To a == b True if a is equal to b , false otherwise
Not Equal To a != b True if a is not equal to b , false otherwise
Greater Than a > b True if a is greater than b , false otherwise
Greater Than or Equal To a >= b True if a is greater than or equal to b , false otherwise
Similar questions