blob: 22a209c10333e2f4cd824693147002c3db8ca8fe [file] [log] [blame]
Serhiy Storchaka410d77f2015-05-25 12:27:39 +03001.. _tut-informal:
Georg Brandl116aa622007-08-15 14:28:22 +00002
3**********************************
4An Informal Introduction to Python
5**********************************
6
7In the following examples, input and output are distinguished by the presence or
Ezio Melotti86aecc32013-05-20 08:12:32 +03008absence of prompts (:term:`>>>` and :term:`...`): to repeat the example, you must type
Georg Brandl116aa622007-08-15 14:28:22 +00009everything after the prompt, when the prompt appears; lines that do not begin
10with a prompt are output from the interpreter. Note that a secondary prompt on a
11line by itself in an example means you must type a blank line; this is used to
12end a multi-line command.
13
Georg Brandl116aa622007-08-15 14:28:22 +000014Many of the examples in this manual, even those entered at the interactive
15prompt, include comments. Comments in Python start with the hash character,
Georg Brandl5d955ed2008-09-13 17:18:21 +000016``#``, and extend to the end of the physical line. A comment may appear at the
17start of a line or following whitespace or code, but not within a string
Christian Heimes5b5e81c2007-12-31 16:14:33 +000018literal. A hash character within a string literal is just a hash character.
Georg Brandl5d955ed2008-09-13 17:18:21 +000019Since comments are to clarify code and are not interpreted by Python, they may
20be omitted when typing in examples.
Georg Brandl116aa622007-08-15 14:28:22 +000021
22Some examples::
23
24 # this is the first comment
Ezio Melotti86aecc32013-05-20 08:12:32 +030025 spam = 1 # and this is the second comment
26 # ... and now a third!
27 text = "# This is not a comment because it's inside quotes."
Georg Brandl116aa622007-08-15 14:28:22 +000028
29
30.. _tut-calculator:
31
32Using Python as a Calculator
33============================
34
35Let's try some simple Python commands. Start the interpreter and wait for the
36primary prompt, ``>>>``. (It shouldn't take long.)
37
38
39.. _tut-numbers:
40
41Numbers
42-------
43
44The interpreter acts as a simple calculator: you can type an expression at it
45and it will write the value. Expression syntax is straightforward: the
46operators ``+``, ``-``, ``*`` and ``/`` work just like in most other languages
Ezio Melotti86aecc32013-05-20 08:12:32 +030047(for example, Pascal or C); parentheses (``()``) can be used for grouping.
48For example::
Georg Brandl116aa622007-08-15 14:28:22 +000049
Ezio Melotti86aecc32013-05-20 08:12:32 +030050 >>> 2 + 2
Georg Brandl116aa622007-08-15 14:28:22 +000051 4
Ezio Melotti86aecc32013-05-20 08:12:32 +030052 >>> 50 - 5*6
53 20
54 >>> (50 - 5*6) / 4
Guido van Rossum0616b792007-08-31 03:25:11 +000055 5.0
Ezio Melotti86aecc32013-05-20 08:12:32 +030056 >>> 8 / 5 # division always returns a floating point number
Mark Dickinson5a55b612009-06-28 20:59:42 +000057 1.6
Guido van Rossum0616b792007-08-31 03:25:11 +000058
Ezio Melotti86aecc32013-05-20 08:12:32 +030059The integer numbers (e.g. ``2``, ``4``, ``20``) have type :class:`int`,
60the ones with a fractional part (e.g. ``5.0``, ``1.6``) have type
Zachary Ware26d5fab2014-01-14 08:44:49 -060061:class:`float`. We will see more about numeric types later in the tutorial.
Guido van Rossum0616b792007-08-31 03:25:11 +000062
Ezio Melotti86aecc32013-05-20 08:12:32 +030063Division (``/``) always returns a float. To do :term:`floor division` and
64get an integer result (discarding any fractional result) you can use the ``//``
65operator; to calculate the remainder you can use ``%``::
Georg Brandl48310cd2009-01-03 21:18:54 +000066
Ezio Melotti86aecc32013-05-20 08:12:32 +030067 >>> 17 / 3 # classic division returns a float
68 5.666666666666667
69 >>>
70 >>> 17 // 3 # floor division discards the fractional part
71 5
72 >>> 17 % 3 # the % operator returns the remainder of the division
Georg Brandl116aa622007-08-15 14:28:22 +000073 2
Ezio Melotti86aecc32013-05-20 08:12:32 +030074 >>> 5 * 3 + 2 # result * divisor + remainder
75 17
Georg Brandl116aa622007-08-15 14:28:22 +000076
Zachary Ware2d1303672014-01-14 08:40:53 -060077With Python, it is possible to use the ``**`` operator to calculate powers [#]_::
Ezio Melotti86aecc32013-05-20 08:12:32 +030078
79 >>> 5 ** 2 # 5 squared
80 25
81 >>> 2 ** 7 # 2 to the power of 7
82 128
83
84The equal sign (``=``) is used to assign a value to a variable. Afterwards, no
Georg Brandl116aa622007-08-15 14:28:22 +000085result is displayed before the next interactive prompt::
86
87 >>> width = 20
Ezio Melotti86aecc32013-05-20 08:12:32 +030088 >>> height = 5 * 9
Georg Brandl116aa622007-08-15 14:28:22 +000089 >>> width * height
90 900
91
Ezio Melotti86aecc32013-05-20 08:12:32 +030092If a variable is not "defined" (assigned a value), trying to use it will
93give you an error::
Georg Brandl5d955ed2008-09-13 17:18:21 +000094
Chris Jerdonek9bb56a62012-09-24 19:28:59 -070095 >>> n # try to access an undefined variable
Georg Brandl48310cd2009-01-03 21:18:54 +000096 Traceback (most recent call last):
Georg Brandl5d955ed2008-09-13 17:18:21 +000097 File "<stdin>", line 1, in <module>
98 NameError: name 'n' is not defined
99
Georg Brandl116aa622007-08-15 14:28:22 +0000100There is full support for floating point; operators with mixed type operands
101convert the integer operand to floating point::
102
gfyounge405d4b2017-05-29 17:26:31 -0400103 >>> 4 * 3.75 - 1
104 14.0
Georg Brandl116aa622007-08-15 14:28:22 +0000105
Georg Brandl116aa622007-08-15 14:28:22 +0000106In interactive mode, the last printed expression is assigned to the variable
107``_``. This means that when you are using Python as a desk calculator, it is
108somewhat easier to continue calculations, for example::
109
110 >>> tax = 12.5 / 100
111 >>> price = 100.50
112 >>> price * tax
113 12.5625
114 >>> price + _
115 113.0625
116 >>> round(_, 2)
117 113.06
Georg Brandl116aa622007-08-15 14:28:22 +0000118
119This variable should be treated as read-only by the user. Don't explicitly
120assign a value to it --- you would create an independent local variable with the
121same name masking the built-in variable with its magic behavior.
122
Ezio Melotti86aecc32013-05-20 08:12:32 +0300123In addition to :class:`int` and :class:`float`, Python supports other types of
124numbers, such as :class:`~decimal.Decimal` and :class:`~fractions.Fraction`.
125Python also has built-in support for :ref:`complex numbers <typesnumeric>`,
126and uses the ``j`` or ``J`` suffix to indicate the imaginary part
127(e.g. ``3+5j``).
128
Georg Brandl116aa622007-08-15 14:28:22 +0000129
130.. _tut-strings:
131
132Strings
133-------
134
Ezio Melotti86aecc32013-05-20 08:12:32 +0300135Besides numbers, Python can also manipulate strings, which can be expressed
136in several ways. They can be enclosed in single quotes (``'...'``) or
137double quotes (``"..."``) with the same result [#]_. ``\`` can be used
138to escape quotes::
Georg Brandl116aa622007-08-15 14:28:22 +0000139
Ezio Melotti86aecc32013-05-20 08:12:32 +0300140 >>> 'spam eggs' # single quotes
Georg Brandl116aa622007-08-15 14:28:22 +0000141 'spam eggs'
Ezio Melotti86aecc32013-05-20 08:12:32 +0300142 >>> 'doesn\'t' # use \' to escape the single quote...
Georg Brandl116aa622007-08-15 14:28:22 +0000143 "doesn't"
Ezio Melotti86aecc32013-05-20 08:12:32 +0300144 >>> "doesn't" # ...or use double quotes instead
Georg Brandl116aa622007-08-15 14:28:22 +0000145 "doesn't"
Andrés Delfino50924392018-06-18 01:34:30 -0300146 >>> '"Yes," they said.'
147 '"Yes," they said.'
148 >>> "\"Yes,\" they said."
149 '"Yes," they said.'
150 >>> '"Isn\'t," they said.'
151 '"Isn\'t," they said.'
Georg Brandl116aa622007-08-15 14:28:22 +0000152
Ezio Melotti86aecc32013-05-20 08:12:32 +0300153In the interactive interpreter, the output string is enclosed in quotes and
154special characters are escaped with backslashes. While this might sometimes
155look different from the input (the enclosing quotes could change), the two
156strings are equivalent. The string is enclosed in double quotes if
157the string contains a single quote and no double quotes, otherwise it is
158enclosed in single quotes. The :func:`print` function produces a more
159readable output, by omitting the enclosing quotes and by printing escaped
160and special characters::
Guido van Rossum0616b792007-08-31 03:25:11 +0000161
Andrés Delfino50924392018-06-18 01:34:30 -0300162 >>> '"Isn\'t," they said.'
163 '"Isn\'t," they said.'
164 >>> print('"Isn\'t," they said.')
165 "Isn't," they said.
Ezio Melotti86aecc32013-05-20 08:12:32 +0300166 >>> s = 'First line.\nSecond line.' # \n means newline
167 >>> s # without print(), \n is included in the output
168 'First line.\nSecond line.'
169 >>> print(s) # with print(), \n produces a new line
170 First line.
171 Second line.
Georg Brandl116aa622007-08-15 14:28:22 +0000172
Ezio Melotti86aecc32013-05-20 08:12:32 +0300173If you don't want characters prefaced by ``\`` to be interpreted as
174special characters, you can use *raw strings* by adding an ``r`` before
175the first quote::
Georg Brandl116aa622007-08-15 14:28:22 +0000176
Ezio Melotti86aecc32013-05-20 08:12:32 +0300177 >>> print('C:\some\name') # here \n means newline!
178 C:\some
179 ame
180 >>> print(r'C:\some\name') # note the r before the quote
181 C:\some\name
Georg Brandl116aa622007-08-15 14:28:22 +0000182
Ezio Melotti86aecc32013-05-20 08:12:32 +0300183String literals can span multiple lines. One way is using triple-quotes:
184``"""..."""`` or ``'''...'''``. End of lines are automatically
185included in the string, but it's possible to prevent this by adding a ``\`` at
186the end of the line. The following example::
Benjamin Peterson8719ad52009-09-11 22:24:02 +0000187
Terry Reedy02a807e2010-11-12 04:22:22 +0000188 print("""\
Benjamin Peterson8719ad52009-09-11 22:24:02 +0000189 Usage: thingy [OPTIONS]
190 -h Display this usage message
191 -H hostname Hostname to connect to
Ezio Melottib297e712009-09-25 20:14:02 +0000192 """)
Benjamin Peterson8719ad52009-09-11 22:24:02 +0000193
Ezio Melotti86aecc32013-05-20 08:12:32 +0300194produces the following output (note that the initial newline is not included):
Benjamin Peterson8719ad52009-09-11 22:24:02 +0000195
196.. code-block:: text
197
198 Usage: thingy [OPTIONS]
199 -h Display this usage message
200 -H hostname Hostname to connect to
201
Georg Brandl116aa622007-08-15 14:28:22 +0000202Strings can be concatenated (glued together) with the ``+`` operator, and
203repeated with ``*``::
204
Ezio Melotti86aecc32013-05-20 08:12:32 +0300205 >>> # 3 times 'un', followed by 'ium'
206 >>> 3 * 'un' + 'ium'
207 'unununium'
Georg Brandl116aa622007-08-15 14:28:22 +0000208
Ezio Melotti86aecc32013-05-20 08:12:32 +0300209Two or more *string literals* (i.e. the ones enclosed between quotes) next
210to each other are automatically concatenated. ::
Georg Brandl116aa622007-08-15 14:28:22 +0000211
Ezio Melotti86aecc32013-05-20 08:12:32 +0300212 >>> 'Py' 'thon'
213 'Python'
214
Will White78a57222017-11-24 17:28:12 +0000215This feature is particularly useful when you want to break long strings::
216
217 >>> text = ('Put several strings within parentheses '
218 ... 'to have them joined together.')
219 >>> text
220 'Put several strings within parentheses to have them joined together.'
221
Ezio Melotti86aecc32013-05-20 08:12:32 +0300222This only works with two literals though, not with variables or expressions::
223
224 >>> prefix = 'Py'
225 >>> prefix 'thon' # can't concatenate a variable and a string literal
226 ...
227 SyntaxError: invalid syntax
228 >>> ('un' * 3) 'ium'
229 ...
Georg Brandl116aa622007-08-15 14:28:22 +0000230 SyntaxError: invalid syntax
231
Ezio Melotti86aecc32013-05-20 08:12:32 +0300232If you want to concatenate variables or a variable and a literal, use ``+``::
Georg Brandl116aa622007-08-15 14:28:22 +0000233
Ezio Melotti86aecc32013-05-20 08:12:32 +0300234 >>> prefix + 'thon'
235 'Python'
236
Ezio Melotti86aecc32013-05-20 08:12:32 +0300237Strings can be *indexed* (subscripted), with the first character having index 0.
238There is no separate character type; a character is simply a string of size
239one::
240
241 >>> word = 'Python'
242 >>> word[0] # character in position 0
243 'P'
244 >>> word[5] # character in position 5
245 'n'
246
247Indices may also be negative numbers, to start counting from the right::
248
249 >>> word[-1] # last character
250 'n'
251 >>> word[-2] # second-last character
252 'o'
253 >>> word[-6]
254 'P'
255
256Note that since -0 is the same as 0, negative indices start from -1.
257
258In addition to indexing, *slicing* is also supported. While indexing is used
259to obtain individual characters, *slicing* allows you to obtain substring::
260
261 >>> word[0:2] # characters from position 0 (included) to 2 (excluded)
262 'Py'
Ezio Melotti93dd6932013-07-08 17:52:54 +0200263 >>> word[2:5] # characters from position 2 (included) to 5 (excluded)
Ezio Melotti86aecc32013-05-20 08:12:32 +0300264 'tho'
265
266Note how the start is always included, and the end always excluded. This
267makes sure that ``s[:i] + s[i:]`` is always equal to ``s``::
268
269 >>> word[:2] + word[2:]
270 'Python'
271 >>> word[:4] + word[4:]
272 'Python'
Georg Brandl116aa622007-08-15 14:28:22 +0000273
274Slice indices have useful defaults; an omitted first index defaults to zero, an
275omitted second index defaults to the size of the string being sliced. ::
276
Serhiy Storchakadba90392016-05-10 12:01:23 +0300277 >>> word[:2] # character from the beginning to position 2 (excluded)
Ezio Melotti86aecc32013-05-20 08:12:32 +0300278 'Py'
Serhiy Storchakadba90392016-05-10 12:01:23 +0300279 >>> word[4:] # characters from position 4 (included) to the end
Ezio Melotti86aecc32013-05-20 08:12:32 +0300280 'on'
Serhiy Storchakadba90392016-05-10 12:01:23 +0300281 >>> word[-2:] # characters from the second-last (included) to the end
Ezio Melotti86aecc32013-05-20 08:12:32 +0300282 'on'
Georg Brandl116aa622007-08-15 14:28:22 +0000283
284One way to remember how slices work is to think of the indices as pointing
285*between* characters, with the left edge of the first character numbered 0.
286Then the right edge of the last character of a string of *n* characters has
287index *n*, for example::
288
Ezio Melotti86aecc32013-05-20 08:12:32 +0300289 +---+---+---+---+---+---+
290 | P | y | t | h | o | n |
291 +---+---+---+---+---+---+
292 0 1 2 3 4 5 6
293 -6 -5 -4 -3 -2 -1
Georg Brandl116aa622007-08-15 14:28:22 +0000294
Ezio Melotti86aecc32013-05-20 08:12:32 +0300295The first row of numbers gives the position of the indices 0...6 in the string;
Georg Brandl116aa622007-08-15 14:28:22 +0000296the second row gives the corresponding negative indices. The slice from *i* to
297*j* consists of all characters between the edges labeled *i* and *j*,
298respectively.
299
300For non-negative indices, the length of a slice is the difference of the
301indices, if both are within bounds. For example, the length of ``word[1:3]`` is
3022.
303
Martin Panter7462b6492015-11-02 03:37:02 +0000304Attempting to use an index that is too large will result in an error::
Ezio Melotti86aecc32013-05-20 08:12:32 +0300305
Berker Peksag23381562014-12-17 14:56:47 +0200306 >>> word[42] # the word only has 6 characters
Ezio Melotti86aecc32013-05-20 08:12:32 +0300307 Traceback (most recent call last):
308 File "<stdin>", line 1, in <module>
309 IndexError: string index out of range
310
311However, out of range slice indexes are handled gracefully when used for
312slicing::
313
314 >>> word[4:42]
315 'on'
316 >>> word[42:]
317 ''
318
319Python strings cannot be changed --- they are :term:`immutable`.
320Therefore, assigning to an indexed position in the string results in an error::
321
322 >>> word[0] = 'J'
323 ...
324 TypeError: 'str' object does not support item assignment
325 >>> word[2:] = 'py'
326 ...
327 TypeError: 'str' object does not support item assignment
328
329If you need a different string, you should create a new one::
330
331 >>> 'J' + word[1:]
332 'Jython'
333 >>> word[:2] + 'py'
334 'Pypy'
335
Georg Brandl116aa622007-08-15 14:28:22 +0000336The built-in function :func:`len` returns the length of a string::
337
338 >>> s = 'supercalifragilisticexpialidocious'
339 >>> len(s)
340 34
341
342
343.. seealso::
344
Ezio Melottia6229e62012-10-12 10:59:14 +0300345 :ref:`textseq`
Georg Brandl48310cd2009-01-03 21:18:54 +0000346 Strings are examples of *sequence types*, and support the common
Guido van Rossum0616b792007-08-31 03:25:11 +0000347 operations supported by such types.
Georg Brandl116aa622007-08-15 14:28:22 +0000348
349 :ref:`string-methods`
Guido van Rossum0616b792007-08-31 03:25:11 +0000350 Strings support a large number of methods for
Georg Brandl116aa622007-08-15 14:28:22 +0000351 basic transformations and searching.
352
Martin Panterbc1ee462016-02-13 00:41:37 +0000353 :ref:`f-strings`
354 String literals that have embedded expressions.
355
Martin Panterd5db1472016-02-08 01:34:09 +0000356 :ref:`formatstrings`
357 Information about string formatting with :meth:`str.format`.
Benjamin Petersone6f00632008-05-26 01:03:56 +0000358
359 :ref:`old-string-formatting`
Jim Fasarakis-Hilliard53c18922017-02-25 23:13:33 +0200360 The old formatting operations invoked when strings are
Benjamin Petersone6f00632008-05-26 01:03:56 +0000361 the left operand of the ``%`` operator are described in more detail here.
Georg Brandl116aa622007-08-15 14:28:22 +0000362
363
Georg Brandl116aa622007-08-15 14:28:22 +0000364.. _tut-lists:
365
366Lists
367-----
368
369Python knows a number of *compound* data types, used to group together other
370values. The most versatile is the *list*, which can be written as a list of
Ezio Melotti86aecc32013-05-20 08:12:32 +0300371comma-separated values (items) between square brackets. Lists might contain
372items of different types, but usually the items all have the same type. ::
Georg Brandl116aa622007-08-15 14:28:22 +0000373
Larry Hastings3732ed22014-03-15 21:13:56 -0700374 >>> squares = [1, 4, 9, 16, 25]
Ezio Melotti86aecc32013-05-20 08:12:32 +0300375 >>> squares
Larry Hastings3732ed22014-03-15 21:13:56 -0700376 [1, 4, 9, 16, 25]
Georg Brandl116aa622007-08-15 14:28:22 +0000377
Ezio Melotti86aecc32013-05-20 08:12:32 +0300378Like strings (and all other built-in :term:`sequence` type), lists can be
379indexed and sliced::
Georg Brandl116aa622007-08-15 14:28:22 +0000380
Ezio Melotti86aecc32013-05-20 08:12:32 +0300381 >>> squares[0] # indexing returns the item
382 1
383 >>> squares[-1]
384 25
385 >>> squares[-3:] # slicing returns a new list
386 [9, 16, 25]
Georg Brandl116aa622007-08-15 14:28:22 +0000387
Benjamin Peterson886af962010-03-21 23:13:07 +0000388All slice operations return a new list containing the requested elements. This
Ezio Melotti86aecc32013-05-20 08:12:32 +0300389means that the following slice returns a new (shallow) copy of the list::
Benjamin Peterson886af962010-03-21 23:13:07 +0000390
Ezio Melotti86aecc32013-05-20 08:12:32 +0300391 >>> squares[:]
Larry Hastings3732ed22014-03-15 21:13:56 -0700392 [1, 4, 9, 16, 25]
Benjamin Peterson886af962010-03-21 23:13:07 +0000393
Berker Peksagb68c4202015-01-27 02:52:14 +0200394Lists also support operations like concatenation::
Georg Brandl116aa622007-08-15 14:28:22 +0000395
Ezio Melotti86aecc32013-05-20 08:12:32 +0300396 >>> squares + [36, 49, 64, 81, 100]
Larry Hastings3732ed22014-03-15 21:13:56 -0700397 [1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
Ezio Melotti86aecc32013-05-20 08:12:32 +0300398
399Unlike strings, which are :term:`immutable`, lists are a :term:`mutable`
400type, i.e. it is possible to change their content::
401
402 >>> cubes = [1, 8, 27, 65, 125] # something's wrong here
403 >>> 4 ** 3 # the cube of 4 is 64, not 65!
404 64
405 >>> cubes[3] = 64 # replace the wrong value
406 >>> cubes
407 [1, 8, 27, 64, 125]
408
409You can also add new items at the end of the list, by using
410the :meth:`~list.append` *method* (we will see more about methods later)::
411
412 >>> cubes.append(216) # add the cube of 6
413 >>> cubes.append(7 ** 3) # and the cube of 7
414 >>> cubes
415 [1, 8, 27, 64, 125, 216, 343]
Georg Brandl116aa622007-08-15 14:28:22 +0000416
417Assignment to slices is also possible, and this can even change the size of the
418list or clear it entirely::
419
Ezio Melotti86aecc32013-05-20 08:12:32 +0300420 >>> letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g']
421 >>> letters
422 ['a', 'b', 'c', 'd', 'e', 'f', 'g']
423 >>> # replace some values
424 >>> letters[2:5] = ['C', 'D', 'E']
425 >>> letters
426 ['a', 'b', 'C', 'D', 'E', 'f', 'g']
427 >>> # now remove them
428 >>> letters[2:5] = []
429 >>> letters
430 ['a', 'b', 'f', 'g']
431 >>> # clear the list by replacing all the elements with an empty list
432 >>> letters[:] = []
433 >>> letters
Georg Brandl116aa622007-08-15 14:28:22 +0000434 []
435
436The built-in function :func:`len` also applies to lists::
437
Ezio Melotti86aecc32013-05-20 08:12:32 +0300438 >>> letters = ['a', 'b', 'c', 'd']
439 >>> len(letters)
Guido van Rossum58da9312007-11-10 23:39:45 +0000440 4
Georg Brandl116aa622007-08-15 14:28:22 +0000441
442It is possible to nest lists (create lists containing other lists), for
443example::
444
Ezio Melotti86aecc32013-05-20 08:12:32 +0300445 >>> a = ['a', 'b', 'c']
446 >>> n = [1, 2, 3]
447 >>> x = [a, n]
448 >>> x
449 [['a', 'b', 'c'], [1, 2, 3]]
Serhiy Storchakafef952a2013-05-28 12:49:34 +0300450 >>> x[0]
Ezio Melotti86aecc32013-05-20 08:12:32 +0300451 ['a', 'b', 'c']
Serhiy Storchakafef952a2013-05-28 12:49:34 +0300452 >>> x[0][1]
Ezio Melotti86aecc32013-05-20 08:12:32 +0300453 'b'
Georg Brandl116aa622007-08-15 14:28:22 +0000454
455.. _tut-firststeps:
456
457First Steps Towards Programming
458===============================
459
460Of course, we can use Python for more complicated tasks than adding two and two
Raymond Hettinger8c26a342017-10-14 07:36:08 -0700461together. For instance, we can write an initial sub-sequence of the
462`Fibonacci series <https://en.wikipedia.org/wiki/Fibonacci_number>`_
463as follows::
Georg Brandl116aa622007-08-15 14:28:22 +0000464
465 >>> # Fibonacci series:
466 ... # the sum of two elements defines the next
467 ... a, b = 0, 1
Raymond Hettinger8c26a342017-10-14 07:36:08 -0700468 >>> while a < 10:
469 ... print(a)
Georg Brandl22ec03c2008-01-07 17:32:13 +0000470 ... a, b = b, a+b
Georg Brandl48310cd2009-01-03 21:18:54 +0000471 ...
Raymond Hettinger8c26a342017-10-14 07:36:08 -0700472 0
Georg Brandl116aa622007-08-15 14:28:22 +0000473 1
474 1
475 2
476 3
477 5
478 8
479
480This example introduces several new features.
481
482* The first line contains a *multiple assignment*: the variables ``a`` and ``b``
483 simultaneously get the new values 0 and 1. On the last line this is used again,
484 demonstrating that the expressions on the right-hand side are all evaluated
485 first before any of the assignments take place. The right-hand side expressions
486 are evaluated from the left to the right.
487
Raymond Hettinger8c26a342017-10-14 07:36:08 -0700488* The :keyword:`while` loop executes as long as the condition (here: ``a < 10``)
Georg Brandl116aa622007-08-15 14:28:22 +0000489 remains true. In Python, like in C, any non-zero integer value is true; zero is
490 false. The condition may also be a string or list value, in fact any sequence;
491 anything with a non-zero length is true, empty sequences are false. The test
492 used in the example is a simple comparison. The standard comparison operators
493 are written the same as in C: ``<`` (less than), ``>`` (greater than), ``==``
494 (equal to), ``<=`` (less than or equal to), ``>=`` (greater than or equal to)
495 and ``!=`` (not equal to).
496
497* The *body* of the loop is *indented*: indentation is Python's way of grouping
Georg Brandl1532c8f2011-12-25 19:03:07 +0100498 statements. At the interactive prompt, you have to type a tab or space(s) for
499 each indented line. In practice you will prepare more complicated input
500 for Python with a text editor; all decent text editors have an auto-indent
501 facility. When a compound statement is entered interactively, it must be
502 followed by a blank line to indicate completion (since the parser cannot
503 guess when you have typed the last line). Note that each line within a basic
504 block must be indented by the same amount.
Georg Brandl116aa622007-08-15 14:28:22 +0000505
Benjamin Peterson07819002013-01-20 10:05:13 -0500506* The :func:`print` function writes the value of the argument(s) it is given.
507 It differs from just writing the expression you want to write (as we did
508 earlier in the calculator examples) in the way it handles multiple arguments,
509 floating point quantities, and strings. Strings are printed without quotes,
510 and a space is inserted between items, so you can format things nicely, like
511 this::
Georg Brandl116aa622007-08-15 14:28:22 +0000512
513 >>> i = 256*256
Guido van Rossum0616b792007-08-31 03:25:11 +0000514 >>> print('The value of i is', i)
Georg Brandl116aa622007-08-15 14:28:22 +0000515 The value of i is 65536
516
Benjamin Peterson648fa192013-01-20 10:09:44 -0500517 The keyword argument *end* can be used to avoid the newline after the output,
518 or end the output with a different string::
Georg Brandl116aa622007-08-15 14:28:22 +0000519
520 >>> a, b = 0, 1
Raymond Hettinger8c26a342017-10-14 07:36:08 -0700521 >>> while a < 1000:
522 ... print(a, end=',')
Georg Brandl116aa622007-08-15 14:28:22 +0000523 ... a, b = b, a+b
Georg Brandl48310cd2009-01-03 21:18:54 +0000524 ...
Raymond Hettinger8c26a342017-10-14 07:36:08 -0700525 0,1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,
Ezio Melotti86aecc32013-05-20 08:12:32 +0300526
527
528.. rubric:: Footnotes
529
530.. [#] Since ``**`` has higher precedence than ``-``, ``-3**2`` will be
531 interpreted as ``-(3**2)`` and thus result in ``-9``. To avoid this
532 and get ``9``, you can use ``(-3)**2``.
533
534.. [#] Unlike other languages, special characters such as ``\n`` have the
535 same meaning with both single (``'...'``) and double (``"..."``) quotes.
536 The only difference between the two is that within single quotes you don't
537 need to escape ``"`` (but you have to escape ``\'``) and vice versa.