Equal, Greater, or Less than:

While using if, else statements, we can use many different mathematical comparisons. For example, Greater than (>) Greater than or equal (>=), Less than (<), Less than or equal (<=). These operations are very important to know them because you will use them a lot for all kinds of programming languages.  


NOTE: While using Greater than or equal, or Less than or equal. Make sure the (=) sign comes after the >, < signs. Such as,

if 15 >= 5:

print (Yes)