Exercise 28 Boolean Practice The logic combinations you learned from the last exercise are called "boolean" logic expressions. Boolean logic is used everywhere in programming. They are essential fundamental parts of computation and knowing them very well is akin to knowing your scales in music. In this exercise you will be taking the logic exercises you memorized and start trying them out in python. Take each of these logic problems, and write out what you think the answer will be. In each case it will be either True or False. Once you have the answers written down, you will start python in your terminal and type them in to confirm your answers. True and True False and True 1 == 1 and 2 == 1 "test" == "test" 1 == 1 or 2 != 1 True and 1 == 1 False and 0 != 0 True or 1 == 1 "test" == "testing" 1 != 0 and 2 == 1 "test" != "testing" "test" == 1 not (True and False) not (1 == 1 and 0 != 1) not (10 == 1 or 1000 == 1000) not (1 != 10 or 3 == 4) not ("testing" == "testing" and "Zed" == "Cool Guy") 1 == 1 and not ("testing" == 1 or 1 == 0) "chunky" == "bacon" and not (3 == 4 or 3 == 3) 3 == 3 and not ("testing" == "testing" or "Python" == "Fun") I will also give you a trick to help you figure out the more complicated ones toward the end. Whenever you see these boolean logic statements, you can solve them easily by this simple process: Find equality test (== or !=) and replace it with its truth. Find each and/or inside a parenthesis and solve those first. Find each not and invert it. Find any remaining and/or and solve it. When you are done you should have True or False. I will demonstrate with a variation on #20: 3 != 4 and not ("testing" != "test" or "Python" == "Python") Here's me going through each of the steps and showing you the translation until I've boiled it down to a single result: Solve each equality test: 3 != 4 is True: True and not ("testing" != "test" or "Python" == "Python") "testing" != "test" is True: True and not (True or "Python" == "Python") "Python" == "Python": True and not (True or True) Find each and/or in parenthesis (): (True or True) is True: True and not (True) Find each not and invert it: not (True) is False: True and False Find any remaining and/or and solve them: True and False is False With that we're done and know the result is False. Warning The more complicated ones may seem very hard at first. You should be able to give a good first stab at solving them, but do not get discouraged. I'm just getting you primed for more of these "logic gymnastics" so that later cool stuff is much easier. Just stick with it, and keep track of what you get wrong, but do not worry that it's not getting in your head quite yet. It'll come. What You Should See After you have tried to guess at these, this is what your session with python might look like: $ python Python 2.5.1 (r251:54863, Feb 6 2009, 19:02:12) [GCC 4.0.1 (Apple Inc. build 5465)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> True and True True >>> 1 == 1 and 2 == 2 True Study Drills There are a lot of operators in Python similar to != and ==. Try to find out as many "equality operators" as you can. They should be like: < or <=. Write out the names of each of these equality operators. For example, I call != "not equal". Play with the python by typing out new boolean operators, and before you hit enter try to shout out what it is. Do not think about it, just the first thing that comes to mind. Write it down then hit enter, and keep track of how many you get right and wrong. Throw away that piece of paper from #3 away so you do not accidentally try to use it later. Common Student Questions Why does "test" and "test" return "test" or 1 and 1 return 1 instead of True? Python and many languages like it return one of the operands to their boolean expressions rather than just True or False. This means that if you did False and 1 you get the first operand (False) but if you do True and 1 your get the second (1). Play with this a bit. Is there any difference between != and <>? Python has deprecated <> in favor of !=, so use !=. Other than that there should be no difference. Isn't there a shortcut? Yes. Any and expression that has a False is immediately False, so you can stop there. Any or expression that has a True is immediately True, so you can stop there. But make sure that you can process the whole expression because later it becomes helpful. Copyright (C) 2010 Zed. A. Shaw Credits