blob: 6cdc6c8419aff8f9ef8cff65ef957120618b4269 [file] [log] [blame]
Berker Peksagc5f40362016-06-01 14:38:18 -07001.. _tut-using:
Georg Brandl116aa622007-08-15 14:28:22 +00002
3****************************
4Using the Python Interpreter
5****************************
6
7
8.. _tut-invoking:
9
10Invoking the Interpreter
11========================
12
Ned Deily5489bda2018-01-31 17:44:09 -050013The Python interpreter is usually installed as :file:`/usr/local/bin/python3.8`
Georg Brandl3db38ce2008-08-30 09:58:30 +000014on those machines where it is available; putting :file:`/usr/local/bin` in your
Chris Jerdonekdf12f2b2012-09-25 04:20:29 -070015Unix shell's search path makes it possible to start it by typing the command:
16
17.. code-block:: text
Georg Brandl116aa622007-08-15 14:28:22 +000018
Ned Deily5489bda2018-01-31 17:44:09 -050019 python3.8
Georg Brandl116aa622007-08-15 14:28:22 +000020
Georg Brandl3db38ce2008-08-30 09:58:30 +000021to the shell. [#]_ Since the choice of the directory where the interpreter lives
22is an installation option, other places are possible; check with your local
23Python guru or system administrator. (E.g., :file:`/usr/local/python` is a
24popular alternative location.)
Georg Brandl116aa622007-08-15 14:28:22 +000025
26On Windows machines, the Python installation is usually placed in
Ned Deilyffb40e52015-05-27 22:00:46 -070027:file:`C:\\Python36`, though you can change this when you're running the
Georg Brandl116aa622007-08-15 14:28:22 +000028installer. To add this directory to your path, you can type the following
29command into the command prompt in a DOS box::
30
Ned Deilyffb40e52015-05-27 22:00:46 -070031 set path=%path%;C:\python36
Georg Brandl116aa622007-08-15 14:28:22 +000032
33Typing an end-of-file character (:kbd:`Control-D` on Unix, :kbd:`Control-Z` on
34Windows) at the primary prompt causes the interpreter to exit with a zero exit
35status. If that doesn't work, you can exit the interpreter by typing the
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +000036following command: ``quit()``.
Georg Brandl116aa622007-08-15 14:28:22 +000037
R David Murray0e0e3912014-04-15 20:25:18 -040038The interpreter's line-editing features include interactive editing, history
R David Murrayfc1020d2014-04-15 20:26:54 -040039substitution and code completion on systems that support readline. Perhaps the
40quickest check to see whether command line editing is supported is typing
Serhiy Storchaka0424eaf2015-09-12 17:45:25 +030041:kbd:`Control-P` to the first Python prompt you get. If it beeps, you have command
R David Murrayfc1020d2014-04-15 20:26:54 -040042line editing; see Appendix :ref:`tut-interacting` for an introduction to the
43keys. If nothing appears to happen, or if ``^P`` is echoed, command line
44editing isn't available; you'll only be able to use backspace to remove
45characters from the current line.
Georg Brandl116aa622007-08-15 14:28:22 +000046
47The interpreter operates somewhat like the Unix shell: when called with standard
48input connected to a tty device, it reads and executes commands interactively;
49when called with a file name argument or with a file as standard input, it reads
50and executes a *script* from that file.
51
52A second way of starting the interpreter is ``python -c command [arg] ...``,
53which executes the statement(s) in *command*, analogous to the shell's
54:option:`-c` option. Since Python statements often contain spaces or other
Georg Brandlf08a9dd2008-06-10 16:57:31 +000055characters that are special to the shell, it is usually advised to quote
56*command* in its entirety with single quotes.
Georg Brandl116aa622007-08-15 14:28:22 +000057
58Some Python modules are also useful as scripts. These can be invoked using
59``python -m module [arg] ...``, which executes the source file for *module* as
60if you had spelled out its full name on the command line.
61
Georg Brandl116aa622007-08-15 14:28:22 +000062When a script file is used, it is sometimes useful to be able to run the script
63and enter interactive mode afterwards. This can be done by passing :option:`-i`
Sandro Tosi69e59a12011-10-31 17:15:39 +010064before the script.
Georg Brandl116aa622007-08-15 14:28:22 +000065
Berker Peksag8b1cbd22014-12-10 01:47:02 +020066All command line options are described in :ref:`using-on-general`.
67
Georg Brandl116aa622007-08-15 14:28:22 +000068
69.. _tut-argpassing:
70
71Argument Passing
72----------------
73
74When known to the interpreter, the script name and additional arguments
R. David Murraya3964632010-12-17 16:11:40 +000075thereafter are turned into a list of strings and assigned to the ``argv``
76variable in the ``sys`` module. You can access this list by executing ``import
77sys``. The length of the list is at least one; when no script and no arguments
Georg Brandl116aa622007-08-15 14:28:22 +000078are given, ``sys.argv[0]`` is an empty string. When the script name is given as
79``'-'`` (meaning standard input), ``sys.argv[0]`` is set to ``'-'``. When
80:option:`-c` *command* is used, ``sys.argv[0]`` is set to ``'-c'``. When
81:option:`-m` *module* is used, ``sys.argv[0]`` is set to the full name of the
82located module. Options found after :option:`-c` *command* or :option:`-m`
83*module* are not consumed by the Python interpreter's option processing but
84left in ``sys.argv`` for the command or module to handle.
85
86
87.. _tut-interactive:
88
89Interactive Mode
90----------------
91
92When commands are read from a tty, the interpreter is said to be in *interactive
93mode*. In this mode it prompts for the next command with the *primary prompt*,
94usually three greater-than signs (``>>>``); for continuation lines it prompts
95with the *secondary prompt*, by default three dots (``...``). The interpreter
96prints a welcome message stating its version number and a copyright notice
Martin Panter1050d2d2016-07-26 11:18:21 +020097before printing the first prompt:
98
99.. code-block:: shell-session
Georg Brandl116aa622007-08-15 14:28:22 +0000100
Ned Deily5489bda2018-01-31 17:44:09 -0500101 $ python3.8
102 Python 3.8 (default, Sep 16 2015, 09:25:04)
Georg Brandl553e1082014-03-23 23:03:59 +0100103 [GCC 4.8.2] on linux
Georg Brandl2d2590d2007-09-28 13:13:35 +0000104 Type "help", "copyright", "credits" or "license" for more information.
Georg Brandl116aa622007-08-15 14:28:22 +0000105 >>>
106
Georg Brandla17487b2009-09-18 07:27:51 +0000107.. XXX update for new releases
Georg Brandl2d2590d2007-09-28 13:13:35 +0000108
Georg Brandl116aa622007-08-15 14:28:22 +0000109Continuation lines are needed when entering a multi-line construct. As an
110example, take a look at this :keyword:`if` statement::
111
Raymond Hettinger4ab532b2014-03-28 16:39:25 -0700112 >>> the_world_is_flat = True
Georg Brandl116aa622007-08-15 14:28:22 +0000113 >>> if the_world_is_flat:
Georg Brandl6911e3c2007-09-04 07:15:32 +0000114 ... print("Be careful not to fall off!")
Georg Brandl48310cd2009-01-03 21:18:54 +0000115 ...
Georg Brandl116aa622007-08-15 14:28:22 +0000116 Be careful not to fall off!
117
118
Senthil Kumaran15e48332014-09-18 21:30:28 +0800119For more on interactive mode, see :ref:`tut-interac`.
120
121
Georg Brandl116aa622007-08-15 14:28:22 +0000122.. _tut-interp:
123
124The Interpreter and Its Environment
125===================================
126
127
Éric Araujo9fbfe152011-06-11 10:34:19 +0200128.. _tut-source-encoding:
129
Georg Brandl116aa622007-08-15 14:28:22 +0000130Source Code Encoding
131--------------------
132
Georg Brandl2d2590d2007-09-28 13:13:35 +0000133By default, Python source files are treated as encoded in UTF-8. In that
134encoding, characters of most languages in the world can be used simultaneously
135in string literals, identifiers and comments --- although the standard library
136only uses ASCII characters for identifiers, a convention that any portable code
137should follow. To display all these characters properly, your editor must
138recognize that the file is UTF-8, and it must use a font that supports all the
139characters in the file.
Georg Brandl6911e3c2007-09-04 07:15:32 +0000140
Mariatta Wijaya23dcccb2017-02-01 20:55:47 -0800141To declare an encoding other than the default one, a special comment line
142should be added as the *first* line of the file. The syntax is as follows::
Georg Brandl116aa622007-08-15 14:28:22 +0000143
Georg Brandl48310cd2009-01-03 21:18:54 +0000144 # -*- coding: encoding -*-
Georg Brandl116aa622007-08-15 14:28:22 +0000145
Mariatta Wijaya23dcccb2017-02-01 20:55:47 -0800146where *encoding* is one of the valid :mod:`codecs` supported by Python.
Georg Brandl116aa622007-08-15 14:28:22 +0000147
Mariatta Wijaya23dcccb2017-02-01 20:55:47 -0800148For example, to declare that Windows-1252 encoding is to be used, the first
149line of your source code file should be::
Georg Brandl116aa622007-08-15 14:28:22 +0000150
Serhiy Storchakaddb62152018-05-09 11:10:55 +0300151 # -*- coding: cp1252 -*-
Georg Brandl116aa622007-08-15 14:28:22 +0000152
Mariatta Wijaya23dcccb2017-02-01 20:55:47 -0800153One exception to the *first line* rule is when the source code starts with a
154:ref:`UNIX "shebang" line <tut-scripts>`. In this case, the encoding
155declaration should be added as the second line of the file. For example::
Georg Brandl116aa622007-08-15 14:28:22 +0000156
Mariatta Wijaya23dcccb2017-02-01 20:55:47 -0800157 #!/usr/bin/env python3
Serhiy Storchakaddb62152018-05-09 11:10:55 +0300158 # -*- coding: cp1252 -*-
Georg Brandl116aa622007-08-15 14:28:22 +0000159
Georg Brandl116aa622007-08-15 14:28:22 +0000160.. rubric:: Footnotes
161
Georg Brandla17487b2009-09-18 07:27:51 +0000162.. [#] On Unix, the Python 3.x interpreter is by default not installed with the
Georg Brandl3db38ce2008-08-30 09:58:30 +0000163 executable named ``python``, so that it does not conflict with a
164 simultaneously installed Python 2.x executable.