Exercise 3. Numbers and Math

Every programming language has some kind of way of doing numbers and math. Do not worry: programmers frequently lie about being math geniuses when they really aren’t. If they were math geniuses, they would be doing math, not writing buggy web frameworks so they can drive race cars.

This exercise has lots of math symbols. Let’s name them right away so you know what they are called. As you type this one in, say the name. When saying them feels boring you can stop saying them. Here are the names:

+: plus

-: minus

/: slash

*: asterisk

%: percent

<: less-than

>: greater-than

<=: less-than-equal

>=: greater-than-equal

Notice how the operations are missing? After you type in the code for this exercise, go back and figure out what each of these does and complete the table. For example, + does addition.

ex3.py


 1    print("I will now count my chickens:")
 2
 3    print("Hens", 25 + 30 / 6)
 4    print("Roosters", 100 - 25 * 3 % 4)
 5
 6    print("Now I will count the eggs:")
 7
 8    print(3 + 2 + 1 - 5 + 4 % 2 - 1 / 4 + 6)
 9
10    print("Is it true that 3 + 2 < 5 -7?")
11    
12    print(3 + 2 < 5 - 7)
13    
14    print("What is 3 + 2?", 3 + 2)
15    print("What is 5 - 7?", 5 - 7)
16
17    print("Oh, that's why it's False.")
18
19    print("How about some more.")
20
21    print("Is it greater?", 5 > -2)
22    print("Is it greater or equal?", 5 >= -2)
23    print("Is it less or equal?", 5 <= -2)

Make sure you type this exactly before you run it. Compare each line of your file to my file.

What You Should See

Exercise 3 Session


$ python3.6 ex3.py
I will now count my chickens:
Hens 30.0
Roosters 97
Now I will count the eggs:
6.75
Is it true that 3 + 2 < 5 - 7?
False
What is 3 + 2? 5
What is 5 - 7? -2
Oh, that's why it's False.
How about some more.
Is it greater? True
Is it greater or equal? True
Is it less or equal? False

Study Drills

1. Above each line, use the # to write a comment to yourself explaining what the line does.

2. Remember in Exercise 0 when you started python3.6? Start python3.6 this way again and, using the math operators, use Python as a calculator.

3. Find something you need to calculate and write a new .py file that does it.

4. Rewrite ex3.py to use floating point numbers so it’s more accurate. 20.0 is floating point.

Common Student Questions

Why is the % character a “modulus” and not a “percent”? Mostly that’s just how the designers chose to use that symbol. In normal writing you are correct to read it as a “percent.” In programming this calculation is typically done with simple division and the / operator. The % modulus is a different operation that just happens to use the % symbol.

How does % work? Another way to say it is, “X divided by Y with J remaining.” For example, “100 divided by 16 with 4 remaining.” The result of % is the J part, or the remaining part.

What is the order of operations? In the United States we use an acronym called PEMDAS which stands for Parentheses Exponents Multiplication Division Addition Subtraction. That’s the order Python follows as well. The mistake people make with PEMDAS is to think this is a strict order, as in “Do P, then E, then M, then D, then A, then S.” The actual order is you do the multiplication and division (M&D) in one step, from left to right, then you do the addition and subtraction in one step from left to right. So, you could rewrite PEMDAS as PE(M&D)(A&S).

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

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