Feed the Bloopy!

Let's learn about If / Else! This is how we make choices in code. Our pet Bloopy likes Apples but not Broccoli. IF you feed it an Apple, it will be happy. ELSE (if you feed it something else, like Broccoli), it won't be happy. Watch Bloopy's face change! This is like Python code: if food == "Apple": print("Yummy!") else: print("Blegh!")