Posted on February 11, 2024February 10, 2024If Statement x = 30 y = 50 if y > x: print(" y greater than x")
Posted on February 9, 2024Python Conditions Equals: x == y Not Equals: x != y Less than: x < y Less than or equal to: x <= y Greater than: x > y Greater than or equal to: x >=y