Computer Science, asked by wwwdev801, 1 day ago

How do we write an if statement in python? if(x>y)then: if(x>y) if x>y:​

Answers

Answered by kainsangeeta25
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