Complete Video Learning
Table of Contents
if statement
x = 5 y = 8 if x <= y: print("x is smaller than y")
if-else statement
x = 5 y = 8 if x >= y: print("x is smaller than y")else: print("y is smaller than x")