Programming (Year 12)
Control Structures
What is the correct syntax for an if statement in Python?
if x > y then:
if x > y:
if (x > y) {}
if x > y;