How do we write an if statement in python? if(x>y)then: if(x>y) if x>y:
Answers
Answered by
1
Explanation:
Python Conditions and If statements
Equals: a == b.
Not Equals: a != b.
Less than: a < b.
Less than or equal to: a <= b.
Greater than: a > b.
Greater than or equal to: a >= b.
Similar questions