Exercise 31 Making Decisions In the first half of this book you mostly just printed out things and called functions, but everything was basically in a straight line. Your scripts ran starting at the top, and went to the bottom where they ended. If you made a function you could run that function later, but it still didn't have the kind of branching you need to really make decisions. Now that you have if, else, and elif you can start to make scripts that decide things. In the last script you wrote out a simple set of tests asking some questions. In this script you will ask the user questions and make decisions based on their answers. Write this script, and then play with it quite a lot to figure it out. print "You enter a dark room with two doors. Do you go through door #1 or door #2?" door = raw_input("> ") if door == "1": print "There's a giant bear here eating a cheese cake. What do you do?" print "1. Take the cake." print "2. Scream at the bear." bear = raw_input("> ") if bear == "1": print "The bear eats your face off. Good job!" elif bear == "2": print "The bear eats your legs off. Good job!" else: print "Well, doing %s is probably better. Bear runs away." % bear elif door == "2": print "You stare into the endless abyss at Cthulhu's retina." print "1. Blueberries." print "2. Yellow jacket clothespins." print "3. Understanding revolvers yelling melodies." insanity = raw_input("> ") if insanity == "1" or insanity == "2": print "Your body survives powered by a mind of jello. Good job!" else: print "The insanity rots your eyes into a pool of muck. Good job!" else: print "You stumble around and fall on a knife and die. Good job!" A key point here is that you are now putting the if-statements inside if-statements as code that can run. This is very powerful and can be used to create "nested" decisions, where one branch leads to another and another. Make sure you understand this concept of if-statements inside if-statements. In fact, do the extra credit to really nail it. What You Should See Here is me playing this little adventure game. I do not do so well. $ python ex31.py You enter a dark room with two doors. Do you go through door #1 or door #2? > 1 There's a giant bear here eating a cheese cake. What do you do? 1. Take the cake. 2. Scream at the bear. > 2 The bear eats your legs off. Good job! Study Drills Make new parts of the game and change what decisions people can make. Expand the game out as much as you can before it gets ridiculous. Common Student Questions Can you just replace elif with a sequence of if/else combinations? You can in some situations, but it depends on how each if/else is written. It also means that Python will check every if/else combination, rather than just the first false ones like it would with if/elif/else. Try to make some of these to figure out the differences. How do I tell if a number is between a range of numbers? You have two options: Use 0 < x < 10 or 1 <= x < 10 which is classic notation, or use x in range(1, 10). What if I wanted more options in the if/elif/else blocks? Easy, just add more elif blocks for each possible choice. Copyright (C) 2010 Zed. A. Shaw Credits rinted. Try some more complex boolean expressions like cars > people and buses < cars. Above each line write an English description of what the line does. Common Student Questions What happens if multiple elif blocks are True? Python starts and the top and runs the first block that is True, so it will run only the first one. Copyright (C) 2010 Zed. A. Shaw Credits