Exercise 11: Asking Questions

Now it is time to pick up the pace. You are doing a lot of printing to get you familiar with typing simple things, but those simple things are fairly boring. What we want to do now is get data into your programs. This is a little tricky because you have to learn to do two things that may not make sense right away but trust me and do it anyway. It will make sense in a few exercises.

Most of what software does is the following:

  1. Take some kind of input from a person.
  2. Change it.
  3. Print out something to show how it changed.

So far you have been printing strings, but you haven’t been able to get any input from a person. You may not even know what “input” means, but type this code in anyway and make it exactly the same. In the next exercise we’ll do more to explain input.

print "How old are you?",
age = raw_input()
print "How tall are you?",
height = raw_input()
print "How much do you weigh?",
weight = raw_input()

print "So, you're %r old, %r tall and %r heavy." % (
    age, height, weight)

Note

We put a , (comma) at the end of each print line. This is so print doesn’t end the line with a newline character and go to the next line.

What You Should See

$ python ex11.py
How old are you? 38
How tall are you? 6'2"
How much do you weigh? 180lbs
So, you're '38' old, '6\'2"' tall and '180lbs' heavy.

Study Drills

  1. Go online and find out what Python’s raw_input does.
  2. Can you find other ways to use it? Try some of the samples you find.
  3. Write another “form” like this to ask some other questions.
  4. Related to escape sequences, try to find out why the last line has '6\'2"' with that \' sequence. See how the single-quote needs to be escaped because otherwise it would end the string?

Common Student Questions

How do I get a number from someone so I can do math?
That’s a little advanced, but try x = int(raw_input()) which gets the number as a string from raw_input() then converts it to an integer using int().
I put my height into raw input like this raw_input("6'2") but it doesn’t work.
You don’t put your height in there, you type it directly into your Terminal. First thing is, go back and make the code exactly like mine. Next, run the script, and when it pauses, type your height in at your keyboard. That’s all there is to it.
Why do you have a newline on line 8 instead of putting it on one line?
That’s so that the line is less than 80 characters long, which is a style that Python programmers like. You could put it on one line if you like.
What’s the difference between input() and raw_input()?
The input() function will try to convert things you enter as if they were Python code, but it has security problems so you should avoid it.
When my strings print out there’s a u in front of them, as in u'35'.
That’s how Python tells you that the string is Unicode. Use a %s format instead and you’ll see it printed like normal.