Hello friends, lets learn about the if-else structure! Syntax: if condition: #code else: #code Check out this program: x = 5 y = 8 if x > y: print ('x is greater than y') else: print ('y is greater than x') Output