cool picture

if else statements

if else statements are used to make decisions in a program. In Python, you can use an if statement to check a condition, and if the statment is true then you make exucte what you want to do. If the statmtn is false, you can use an else statement to execute a different block of code. make sure to always add a colon at the end, also make sure to add 2 equal signs (==) for comparison,