The Python syntax defines a set of rules that are used to create a Python Program.
a=7 b=90 if (a>b): print("Hello World") else: print("Good Bye") Output Good Bye