Using Python As Calculator
Using Python As Calculator
value. Expression syntax is straightforward: the operators +, -, * and / work just like in most other
languages (for example, Pascal or C); parentheses (()) can be used for grouping. For example:
>>>
>>> 2 + 2
>>> 50 - 5*6
20
5.0
1.6
The integer numbers (e.g. 2, 4, 20) have type int, the ones with a fractional part (e.g. 5.0, 1.6) have
type float. We will see more about numeric types later in the tutorial.
Division (/) always returns a float. To do floor division and get an integer result (discarding any
fractional result) you can use the // operator; to calculate the remainder you can use %:
>>>
5.666666666666667
>>>
17
>>>
>>> 5 ** 2 # 5 squared
25
128
The equal sign (=) is used to assign a value to a variable. Afterwards, no result is displayed before the
next interactive prompt:
>>>
>>> width = 20
>>> height = 5 * 9
900
If a variable is not “defined” (assigned a value), trying to use it will give you an error:
>>>
There is full support for floating point; operators with mixed type operands convert the integer
operand to floating point:
>>>
>>> 4 * 3.75 - 1
14.0
In interactive mode, the last printed expression is assigned to the variable _. This means that when
you are using Python as a desk calculator, it is somewhat easier to continue calculations, for
example:
>>>
12.5625
>>> price + _
113.0625
>>> round(_, 2)
113.06
This variable should be treated as read-only by the user. Don’t explicitly assign a value to it — you
would create an independent local variable with the same name masking the built-in variable with
its magic behavior.
In addition to int and float, Python supports other types of numbers, such as Decimal and Fraction.
Python also has built-in support for complex numbers, and uses the j or J suffix to indicate the
imaginary part (e.g. 3+5j).
3.1.2. Strings
Besides numbers, Python can also manipulate strings, which can be expressed in several ways. They
can be enclosed in single quotes ('...') or double quotes ("...") with the same result 2. \ can be used to
escape quotes:
>>>
'spam eggs'
"doesn't"
"doesn't"
>>>
First line.
Second line.
If you don’t want characters prefaced by \ to be interpreted as special characters, you can use raw
strings by adding an r before the first quote:
>>>
C:\some
ame
C:\some\name
String literals can span multiple lines. One way is using triple-quotes: """...""" or '''...'''. End of lines
are automatically included in the string, but it’s possible to prevent this by adding a \ at the end of
the line. The following example:
print("""\
""")
produces the following output (note that the initial newline is not included):
Strings can be concatenated (glued together) with the + operator, and repeated with *:
>>>
'unununium'
Two or more string literals (i.e. the ones enclosed between quotes) next to each other are
automatically concatenated.
>>>
'Python'
This feature is particularly useful when you want to break long strings:
>>>
>>> text
This only works with two literals though, not with variables or expressions:
>>>
prefix 'thon'
('un' * 3) 'ium'
>>>
'Python'
Strings can be indexed (subscripted), with the first character having index 0. There is no separate
character type; a character is simply a string of size one:
>>>
'P'
'n'
Indices may also be negative numbers, to start counting from the right:
>>>
'n'
'o'
>>> word[-6]
'P'
Note that since -0 is the same as 0, negative indices start from -1.
In addition to indexing, slicing is also supported. While indexing is used to obtain individual
characters, slicing allows you to obtain substring:
>>>
'Py'
'tho'
Slice indices have useful defaults; an omitted first index defaults to zero, an omitted second index
defaults to the size of the string being sliced.
>>>
'Py'
'on'
'on'
Note how the start is always included, and the end always excluded. This makes sure that s[:i] + s[i:]
is always equal to s:
>>>
'Python'
'Python'
One way to remember how slices work is to think of the indices as pointing between characters, with
the left edge of the first character numbered 0. Then the right edge of the last character of a string
of n characters has index n, for example:
+---+---+---+---+---+---+
|P|y|t|h|o|n|
+---+---+---+---+---+---+
0 1 2 3 4 5 6
-6 -5 -4 -3 -2 -1
The first row of numbers gives the position of the indices 0…6 in the string; the second row gives the
corresponding negative indices. The slice from i to j consists of all characters between the edges
labeled i and j, respectively.
For non-negative indices, the length of a slice is the difference of the indices, if both are within
bounds. For example, the length of word[1:3] is 2.
>>>
However, out of range slice indexes are handled gracefully when used for slicing:
>>>
>>> word[4:42]
'on'
>>> word[42:]
''
Python strings cannot be changed — they are immutable. Therefore, assigning to an indexed
position in the string results in an error:
>>>
>>>
'Jython'
'Pypy'
>>>
>>> s = 'supercalifragilisticexpialidocious'
>>> len(s)
34
See also
Strings are examples of sequence types, and support the common operations supported by such
types.
String Methods
Strings support a large number of methods for basic transformations and searching.
The old formatting operations invoked when strings are the left operand of the % operator are
described in more detail here.
3.1.3. Lists
Python knows a number of compound data types, used to group together other values. The most
versatile is the list, which can be written as a list of comma-separated values (items) between square
brackets. Lists might contain items of different types, but usually the items all have the same type.
>>>
>>> squares
Like strings (and all other built-in sequence types), lists can be indexed and sliced:
>>>
>>> squares[-1]
25
All slice operations return a new list containing the requested elements. This means that the
following slice returns a shallow copy of the list:
>>>
>>> squares[:]
Unlike strings, which are immutable, lists are a mutable type, i.e. it is possible to change their
content:
>>>
64
>>> cubes
You can also add new items at the end of the list, by using the append() method (we will see more
about methods later):
>>>
>>> cubes
Assignment to slices is also possible, and this can even change the size of the list or clear it entirely:
>>>
>>> letters
>>> letters
>>> letters
>>> # clear the list by replacing all the elements with an empty list
>>> letters[:] = []
>>> letters
[]
>>>
>>> len(letters)
It is possible to nest lists (create lists containing other lists), for example:
>>>
>>> n = [1, 2, 3]
>>> x = [a, n]
>>> x
>>> x[0]
>>> x[0][1]
'b'
Of course, we can use Python for more complicated tasks than adding two and two together. For
instance, we can write an initial sub-sequence of the Fibonacci series as follows:
>>>
... a, b = 0, 1
... print(a)
... a, b = b, a+b
...
The first line contains a multiple assignment: the variables a and b simultaneously get the new
values 0 and 1. On the last line this is used again, demonstrating that the expressions on the right-
hand side are all evaluated first before any of the assignments take place. The right-hand side
expressions are evaluated from the left to the right.
The while loop executes as long as the condition (here: a < 10) remains true. In Python, like in C, any
non-zero integer value is true; zero is false. The condition may also be a string or list value, in fact
any sequence; anything with a non-zero length is true, empty sequences are false. The test used in
the example is a simple comparison. The standard comparison operators are written the same as in
C: < (less than), > (greater than), == (equal to), <= (less than or equal to), >= (greater than or equal
to) and != (not equal to).
The body of the loop is indented: indentation is Python’s way of grouping statements. At the
interactive prompt, you have to type a tab or space(s) for each indented line. In practice you will
prepare more complicated input for Python with a text editor; all decent text editors have an auto-
indent facility. When a compound statement is entered interactively, it must be followed by a blank
line to indicate completion (since the parser cannot guess when you have typed the last line). Note
that each line within a basic block must be indented by the same amount.
The print() function writes the value of the argument(s) it is given. It differs from just writing the
expression you want to write (as we did earlier in the calculator examples) in the way it handles
multiple arguments, floating point quantities, and strings. Strings are printed without quotes, and a
space is inserted between items, so you can format things nicely, like this:
>>>
>>> i = 256*256
The keyword argument end can be used to avoid the newline after the output, or end the output
with a different string:
>>>
>>> a, b = 0, 1
... a, b = b, a+b
...
0,1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,
Footnotes