Exercise 31. Making Decisions

In the first half of this book you mostly just printed out strings 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.

ex31.py


 1    print("""You enter a dark room with two doors.
 2    Do you go through door #1 or door #2?""")
 3
 4    door = input("> ")
 5
 6    if door == "1":
 7        print("There's a giant bear here eating a cheese cake.")
 8        print("What do you do?")
 9        print("1. Take the cake.")
10        print("2. Scream at the bear.")
11
12        bear = input("> ")
13
14        if bear == "1":
15            print("The bear eats your face off. Good job!")
16        elif bear == "2":
17            print("The bear eats your legs off. Good job!")
18        else:
19            print(f"Well, doing {bear} is probably better.")
20            print("Bear runs away.")
21
22    elif door == "2":
23        print("You stare into the endless abyss at Cthulhu's retina.")
24        print("1. Blueberries.")
25        print("2. Yellow jacket clothespins.")
26        print("3. Understanding revolvers yelling melodies.")
27
28        insanity = input("> ")
29
30        if insanity == "1" or insanity == "2":
31            print("Your body survives powered by a mind of jello.")
32            print("Good job!")
33        else:
34            print("The insanity rots your eyes into a pool of muck.")
35            print("Good job!")
36
37    else:
38        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 Study Drills to really nail it.

What You Should See

Here is me playing this little adventure game. I do not do so well.

Exercise 31 Session


$ python3.6 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

1. 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.

2. Write a completely new game. Maybe you don’t like this one, so make your own. This is your computer; do what you want.

Common Student Questions

Can you 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 whether 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? Add more elif blocks for each possible choice.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.224.0.25