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. Takes some kind of input from a person.

2. Changes it.

3. Prints 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.

ex11.py


 1    print("How old are you?", end=' ')
 2    age = input()
 3    print("How tall are you?", end=' ')
 4    height = input()
 5    print("How much do you weigh?", end=' ')
 6    weight = input()
 7
 8    print(f"So, you're {age} old, {height} tall and {weight} heavy.")


Warning!

We put an end=' ' at the end of each print line. This tells print to not end the line with a newline character and go to the next line.


What You Should See

Exercise 11 Session


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

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(input()), which gets the number as a string from input(), then converts it to an integer using int().

I put my height into raw input like this input("6'2") but it doesn’t work. Don’t put your height in there; type it directly into your Terminal. First, 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.

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

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