IfStmt.py

#If statement example

price = 99

if (price < 100):

        print("I can not buy Pizza")

        print("Feeling bad :(")

else :

        print("I can buy Pizza")

        print("Yu Yum :)")