Skip to main content

Foundations of Python Programming: Functions First

Section 2.3 Operators and Operands

You can build complex expressions out of simpler ones using operators. Operators are special tokens that represent computations like addition, multiplication and division. The values the operator works on are called operands.
The following are all legal Python expressions whose meaning is more or less clear:
20 + 32
5 ** 2
(5 + 9) * (15 - 7)
The tokens +, -, and *, and the use of parentheses for grouping, mean in Python what they mean in mathematics. The asterisk (*) is the token for multiplication, and ** is the token for exponentiation. Addition, subtraction, multiplication, and exponentiation all do what you expect.
Remember that if we want to see the results of the computation, the program needs to specify that with the word print. The first three computations occur, but their results are not printed out.
In Python 3, which we will be using, the division operator / produces a floating point result (even if the result is an integer; 4/2 is 2.0). If you want truncated division, which ignores the remainder, you can use the // operator (for example, 5//2 is 2).
Pay particular attention to the examples above. Note that 9//5 truncates rather than rounding, so it produces the value 1 rather 2.
The truncated division operator, //, also works on floating point numbers. It truncates to the nearest integer, but still produces a floating point result. Thus 7.0 // 3.0 is 2.0.
The modulus operator, sometimes also called the remainder operator or integer remainder operator works on integers (and integer expressions) and yields the remainder when the first operand is divided by the second. In Python, the modulus operator is a percent sign (%). The syntax is the same as for other operators.
In the above example, 7 divided by 3 is 2 when we use integer division and there is a remainder of 1.
The modulus operator turns out to be surprisingly useful. For example, you can check whether one number is divisible by another—if x % y is zero, then x is divisible by y. Also, you can extract the right-most digit or digits from a number. For example, x % 10 yields the right-most digit of x (in base 10). Similarly x % 100 yields the last two digits.
Check your understanding

Checkpoint 2.3.1.

    What value is printed when the following statement executes?
    print(18 / 4)
    
  • 4.5
  • Because the result is not an integer, a floating point answer is produced.
  • 5
  • Even if // were used, it would still truncate, not round
  • 4
  • Perhaps you are thinking of the integer division operator, //
  • 4.0
  • / performs exact division, without truncation
  • 2
  • / does division. Perhaps you were thinking of %, which computes the remainder?

Checkpoint 2.3.2.

    What value is printed when the following statement executes?
    print(18.0 // 4)
    
  • 4.5
  • - // does truncated division.
  • 5
  • - Neither / nor // leads to rounding up
  • 4
  • - Even though it truncates, it produces a floating point result
  • 4.0
  • - Yes, even though it truncates, it produces a floating point result because 18.0 is a float
  • 2
  • - / does division. Perhaps you were thinking of %, which computes the remainder?

Checkpoint 2.3.3.

    What value is printed when the following statement executes?
    print(18 % 4)
    
  • 4.25
  • The % operator returns the remainder after division.
  • 5
  • The % operator returns the remainder after division.
  • 4
  • The % operator returns the remainder after division.
  • 2
  • The % operator returns the remainder after division.
You have attempted of activities on this page.