Python Math Operators
Python Math Operators
CEMC Courseware > Home > Python from scratch > Built-ins
Built-ins
ID ▿ Name ▿ Description ▿ Module ▿ Step ▿ Explanation ▿ Example ▿
Adds two
2 + addition 1 3 2 + 3 has the value 5.
numbers.
Subtracts the
3 - subtraction 1 3 rst number by 3 - 1 has the value 2.
the second.
Used on one
value, does not
6 + unary plus 1 3 + 3 has the value 3.
change the
number.
Used on one
7 - negation 1 3 value, negates - 3 has the value -3.
the number.
Calculates the
quotient when
20 // 7 has the value
the rst
8 // quotient 1 3 2, since the integer part
number is
of 20 divided by 7 is 2.
divided by the
second.
Calculates the
remainder 20 % 7 has the value
when the rst 6, since the remainder
9 % remainder 1 3
number is when dividing 20 by 7
divided by the is 6.
second.
ID ▿ Name ▿ Description ▿ Module ▿ Step ▿ Explanation ▿ Example ▿
The math
module. After the math module
Contains is imported,
12 math math module 2 3 functions and math.sqrt and other
constants functions and
relating to constants can be used.
math.
Used to import
After using from math
import a single a single
from math import sqrt one can
16 function or 2 3 function or
import use sqrt instead of
constant constant from
math.sqrt.
a module.
ID ▿ Name ▿ Description ▿ Module ▿ Step ▿ Explanation ▿ Example ▿
Produces the
abs(-3.4) has the
18 abs absolute value 2 3 absolute value
value 3.4.
of the input.
Makes an
integer,
oating point
number, or The values of
make into
22 int 2 4 string (if an int(5.3) and
integer
integer in int("5") are both 5.
quotation
marks) into an
integer.
ID ▿ Name ▿ Description ▿ Module ▿ Step ▿ Explanation ▿ Example ▿
Makes an
integer,
oating point
number, or The values of
make into string (if a float(5) and
23 float 2 4
oating point number in float("5") are both
quotation 5.0.
marks) into a
oating point
number.
The values of
Produces the
length("") and
25 len length 2 7 length of a
length("cat") are 0
string.
and 3, respectively.
Produces the
string formed The value of "hot" +
27 + concatenation 2 7 by gluing "dog" is the string
together the "hotdog".
input strings.
Produces the
string formed
by repeatedly
repeated The value of 2 * "no"
28 * 2 7 gluing the
concatenation is "nono".
input with
copies of the
input.
Produces a
substring from
positions a up The value of "hotdog"
29 [a:b] slice 2 7
to but not [2:5] is "tdo".
including
position b.
ID ▿ Name ▿ Description ▿ Module ▿ Step ▿ Explanation ▿ Example ▿
Produces a
string with all
lower-case
The value of
letters
30 upper upper case 2 8 "Ha!".upper() is
replaced by
"HA!".
upper-case
letters. Uses
dot notation.
Produces a
string with all
upper-case
The value of
letters
31 lower lower case 2 8 "Ha!".lower() is
replaced by
"ha!".
lower-case
letters. Uses
dot notation.
Produces the
The values of
integer
math.ceil(2),
reached by
math.ceil(1.2), and
32 ceil ceiling 2 8 pushing up to
math.ceil(-1.2) are
the ceiling. In
2, 2, and -1,
the math
respectively.
module.
If the value of a
The Boolean
35 True true 5 3 Boolean is not True, it
constant True.
must be False.
ID ▿ Name ▿ Description ▿ Module ▿ Step ▿ Explanation ▿ Example ▿
If the value of a
The Boolean
36 False false 5 3 Boolean is not False, it
contant False.
must be True.
Produces True
when at least
The value of True or
37 or or 5 3 one smaller
False is True.
expression is
True.
Produces True
when both
The value of True and
38 and and 5 3 smaller
True is True.
expressions
are True.
Produces True
when the value
The value of not True
39 not not 5 3 is False and
is False.
False when the
value is True.
Produces True
when the rst
input has a The value of 3 < 2 is
40 < less than 5 3
value less than False.
the second
input.
Produces True
when the rst
input has a The value of 5 > 2 is
41 > greater than 5 3
value greater True.
than the
second input.
Produces True
when the rst
less than or input has a The value of 3 <= 3 is
42 <= 5 3
equal to value less than True.
or equal to the
second input.
ID ▿ Name ▿ Description ▿ Module ▿ Step ▿ Explanation ▿ Example ▿
Produces True
when the rst
input has a
greater than or The value of 5 >= 10 is
43 >= 5 3 value greater
equal to False.
than or equal
to the second
input.
Produces True
when the rst
input has a The value of 1 == 0 is
44 == equals 5 3
value equal to False.
the second
input.
Produces True
when the rst
input has a The value of 2 != 2 is
45 != not equals 5 3
value not equal True.
to the second
input.
Produces True
when the rst
and second
For a variable num, the
input are at the
46 is is 5 3 value of num is num is
same memory
True.
address.
Syntax is a is
b.
Produces True
when the rst
and second
input are not at The value of a is not
47 is not is not 5 3 the same b is True whenever a
memory is b is False.
address.
Syntax is a is
not b.
Produces the
code point
code point The value of ord("A")
48 ord 5 3 corresponding
from character is 65.
to the input
character.
ID ▿ Name ▿ Description ▿ Module ▿ Step ▿ Explanation ▿ Example ▿
Produces the
character
character from The value of chr(65) is
49 chr 5 3 corresponding
code point "A".
to the input
code point.
Produces True
if the input
The value of
string is made
50 isalpha letter check 5 3 "Cat".isalpha() is
up of letters.
True.
Uses dot
notation.
Produces True
if the input
string is made The value of
lower case
51 islower 5 3 up of lower- "cat".islower() is
check
case letters. True.
Uses dot
notation.
Produces True
if the input
string is made The value of
upper case
52 isupper 5 3 up of upper- "CAT".isupper() is
check
case letters. True.
Uses dot
notation.
Produces True
if the input
The value of
string is made
53 isdigit digit check 5 3 "123".isdigit() is
up of digits.
True.
Uses dot
notation.
Produces True
if the input
string is made The value of "
54 isspace space check 5 3
up of blank ".isspace() is True.
spaces. Uses
dot notation.
ID ▿ Name ▿ Description ▿ Module ▿ Step ▿ Explanation ▿ Example ▿
Produces the
The value of [0, 1] +
list formed by
58 + concatenation 9 2 [2, 3] is the list [0,
gluing together
1, 2, 3].
the input lists.
Produces the
list formed by The value of [3, 4] *
repeatedly 2 is [3, 4, 3, 4], as
repeated
59 * 9 2 gluing the it is formed by
concatenation
input with concatenating two
copies of the copies of [3, 4].
input.
Produces the
minimum item
The value of min([4,
61 min minimum 9 3 in the list. The
3, 6]) is 3.
input list does
not change.
Produces the
maximum item
The value of max([4,
62 max maximum 9 3 in the list. The
3, 6]) is 6.
input list does
not change.
ID ▿ Name ▿ Description ▿ Module ▿ Step ▿ Explanation ▿ Example ▿
Produces the
number of
times the input The value of [8, 7,
item appears 8, 9].count(8) is 2,
63 count count 9 3 in the input list. since the value 8
Uses dot appears two times in
notation. The the list.
input list does
not change.
Produces the
smallest index
of a position
containing the
The value of [8, 9,
input item in
64 index search 9 3 7].index(9) is 1,
the input list.
since 9 is in position 1.
Uses dot
notation. The
input list does
not change.
Produces True
if the item is in The value of 9 in [8,
65 in membership 9 3
the list. Syntax 9, 7] is True.
is a in b.
Produces a
new list
containing the
The value of
items of the
66 list new list 9 3 list("ape") is ["a",
input as items.
"p", "e"].
The input list
does not
change.
Produces a
new list with
the input items The value of
67 sorted sorted 9 3 in sorted sorted([6, 3, 5])
order. The is [3, 5, 6].
input list does
not change.
ID ▿ Name ▿ Description ▿ Module ▿ Step ▿ Explanation ▿ Example ▿
Mutates the
For a variable seq with
input list by
value [7, 8, 7],
removing the
using seq.remove(7)
69 remove remove 9 3 rst
results in seq
occurrence of
becoming the list [8,
the input item
7].
from the list.
Produces an
immutable
sequence of
integers
starting at
start and
stopping
before stop at
intervals of
step. Input The value of range[3,
order is 9, 2] is a structure
72 range range 10 2
(start, with the values 3, 5,
stop, step). and 7.
If step is
missing, its
default value is
1. If both step
and stop are
missing, their
default values
are 1 and 0,
respectively.
Produces a list
of strings from The value of "a b
73 split split 10 8 an input string. c".split() is ['a',
Uses dot 'b', 'c'].
notation.
To create a class
Oyster, the rst line
should be class
Creates a new
74 class class de nition 11 2 Oyster: and the
class.
second line, indented,
should have the
docstring.
Produces True
The value of
if the rst input
isinstance(eye,
(an object) is a
75 isinstance instance check 11 2 Circle) is True if we
member of the
have created an object
second input (a
eye of type Circle.
class).
ID ▿ Name ▿ Description ▿ Module ▿ Step ▿ Explanation ▿ Example ▿
Produces True
if the rst input The value of
(an object) has hasattr(eye,
an attribute "colour") is True if
76 hasattr attribute check 11 2
with the the object eye is of a
second input (a type with attribute
string) as its colour.
name.
Used with an
class name as Using dir(Circle)
77 dir directory 11 2 input to show shows contents of the
contents of a class Circle.
class.
Contains
To load the copy
functions
78 copy copy module 11 3 module, use import
related to
copy.
copying.
To create a copy of an
object eye, use
Makes a
copy.copy(eye). If
shallow copy.
79 copy copy function 11 3 the object contains
In the copy
other objects, those
module.
objects will not be
copied.
To create a copy of an
Makes a deep object eye in which all
deep copy
80 deepcopy 11 3 copy. In the objects within it are
function
copy module. also copied, use
copy.deepcopy(eye).
Produces the
tuple formed The value of (0, 1) +
83 + concatenation 12 3 by gluing (2, 3) is the tuple (0,
together the 1, 2, 3).
input tuples.
ID ▿ Name ▿ Description ▿ Module ▿ Step ▿ Explanation ▿ Example ▿
Produces the
tuple formed The value of (3, 4) *
by repeatedly 2 is (3, 4, 3, 4), as
repeated
84 * 12 3 gluing the it is formed by
concatenation
input with concatenating two
copies of the copies of (3, 4).
input.
Produces a
tuple from The value of (6, 7,
positions a up 8, 9)[1:3] is (7, 8),
85 [a:b] slice 12 3
to but not formed of the items in
including positions 1 through 2.
position b.
Produces a
The value of
tuple from the
86 tuple tuple 12 3 tuple([1, 2]) is (1,
items in the
2).
input.
Produces the
The value of min((4,
87 min minimum 12 3 minimum item
3, 6)) is 3.
in the tuple.
Produces the
The value of max((4,
88 max maximum 12 3 maximum item
3, 6)) is 6.
in the tuple.
Produces the
number of The value of (8, 7,
times the input 8, 9).count(8) is 2,
89 count count 12 3 item appears since the value 8
in the input appears two times in
tuple. Uses dot the tuple.
notation.
Produces the
smallest index
of a position
The value of (8, 9,
containing the
90 index search 12 3 7).index(9) is 1,
input item in
since 9 is in position 1.
the input tuple.
Uses dot
notation.
ID ▿ Name ▿ Description ▿ Module ▿ Step ▿ Explanation ▿ Example ▿
Produces True
if the item is in
The value of 9 in (8,
91 in membership 12 3 the tuple.
9, 7) is True.
Syntax is a in
b.
Produces a
new list The value of
containing the list(("a", "p",
92 list new list 12 3
items of the "e)) is ["a", "p",
input tupleas "e"].
items.
Produces a
new list with The value of
93 sorted sorted 12 3 the tuple input sorted((6, 3, 5))
items in sorted is [3, 5, 6].
order.
Produces True
if the rst input For a variable data
is not a key in assigned the value
the second {'one': 'un',
98 not in not in 12 4
input (a 'two': 'deux'}, the
dictionary). value of 'three' not
Syntax is a not in data is True.
in b.
Using
Produces pairs
zip('ha','ho')
of values from
99 zip zip 12 4 results in the pairs
two input
('h', 'h') and
sequences.
('a', 'o').