Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | |
| 2 | .. _lexical: |
| 3 | |
| 4 | **************** |
| 5 | Lexical analysis |
| 6 | **************** |
| 7 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 8 | .. index:: lexical analysis, parser, token |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 9 | |
| 10 | A Python program is read by a *parser*. Input to the parser is a stream of |
| 11 | *tokens*, generated by the *lexical analyzer*. This chapter describes how the |
| 12 | lexical analyzer breaks a file into tokens. |
| 13 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 14 | Python reads program text as Unicode code points; the encoding of a source file |
| 15 | can be given by an encoding declaration and defaults to UTF-8, see :pep:`3120` |
| 16 | for details. If the source file cannot be decoded, a :exc:`SyntaxError` is |
| 17 | raised. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 18 | |
| 19 | |
| 20 | .. _line-structure: |
| 21 | |
| 22 | Line structure |
| 23 | ============== |
| 24 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 25 | .. index:: line structure |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 26 | |
| 27 | A Python program is divided into a number of *logical lines*. |
| 28 | |
| 29 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 30 | .. _logical-lines: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 31 | |
| 32 | Logical lines |
| 33 | ------------- |
| 34 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 35 | .. index:: logical line, physical line, line joining, NEWLINE token |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 36 | |
| 37 | The end of a logical line is represented by the token NEWLINE. Statements |
| 38 | cannot cross logical line boundaries except where NEWLINE is allowed by the |
| 39 | syntax (e.g., between statements in compound statements). A logical line is |
| 40 | constructed from one or more *physical lines* by following the explicit or |
| 41 | implicit *line joining* rules. |
| 42 | |
| 43 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 44 | .. _physical-lines: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 45 | |
| 46 | Physical lines |
| 47 | -------------- |
| 48 | |
| 49 | A physical line is a sequence of characters terminated by an end-of-line |
Ammar Askar | 0aa17ee | 2018-06-09 16:49:39 -0700 | [diff] [blame^] | 50 | sequence. In source files and strings, any of the standard platform line |
| 51 | termination sequences can be used - the Unix form using ASCII LF (linefeed), |
| 52 | the Windows form using the ASCII sequence CR LF (return followed by linefeed), |
| 53 | or the old Macintosh form using the ASCII CR (return) character. All of these |
| 54 | forms can be used equally, regardless of platform. The end of input also serves |
| 55 | as an implicit terminator for the final physical line. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 56 | |
| 57 | When embedding Python, source code strings should be passed to Python APIs using |
| 58 | the standard C conventions for newline characters (the ``\n`` character, |
| 59 | representing ASCII LF, is the line terminator). |
| 60 | |
| 61 | |
| 62 | .. _comments: |
| 63 | |
| 64 | Comments |
| 65 | -------- |
| 66 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 67 | .. index:: comment, hash character |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 68 | |
| 69 | A comment starts with a hash character (``#``) that is not part of a string |
| 70 | literal, and ends at the end of the physical line. A comment signifies the end |
| 71 | of the logical line unless the implicit line joining rules are invoked. Comments |
| 72 | are ignored by the syntax; they are not tokens. |
| 73 | |
| 74 | |
| 75 | .. _encodings: |
| 76 | |
| 77 | Encoding declarations |
| 78 | --------------------- |
| 79 | |
R David Murray | f7f9818 | 2014-04-16 21:48:04 -0400 | [diff] [blame] | 80 | .. index:: source character set, encoding declarations (source file) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 81 | |
| 82 | If a comment in the first or second line of the Python script matches the |
| 83 | regular expression ``coding[=:]\s*([-\w.]+)``, this comment is processed as an |
| 84 | encoding declaration; the first group of this expression names the encoding of |
Robert Collins | 0b2833e | 2015-08-06 21:08:44 +1200 | [diff] [blame] | 85 | the source code file. The encoding declaration must appear on a line of its |
| 86 | own. If it is the second line, the first line must also be a comment-only line. |
| 87 | The recommended forms of an encoding expression are :: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 88 | |
| 89 | # -*- coding: <encoding-name> -*- |
| 90 | |
| 91 | which is recognized also by GNU Emacs, and :: |
| 92 | |
| 93 | # vim:fileencoding=<encoding-name> |
| 94 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 95 | which is recognized by Bram Moolenaar's VIM. |
| 96 | |
| 97 | If no encoding declaration is found, the default encoding is UTF-8. In |
| 98 | addition, if the first bytes of the file are the UTF-8 byte-order mark |
| 99 | (``b'\xef\xbb\xbf'``), the declared file encoding is UTF-8 (this is supported, |
| 100 | among others, by Microsoft's :program:`notepad`). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 101 | |
| 102 | If an encoding is declared, the encoding name must be recognized by Python. The |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 103 | encoding is used for all lexical analysis, including string literals, comments |
Robert Collins | 0b2833e | 2015-08-06 21:08:44 +1200 | [diff] [blame] | 104 | and identifiers. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 105 | |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 106 | .. XXX there should be a list of supported encodings. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 107 | |
| 108 | |
| 109 | .. _explicit-joining: |
| 110 | |
| 111 | Explicit line joining |
| 112 | --------------------- |
| 113 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 114 | .. index:: physical line, line joining, line continuation, backslash character |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 115 | |
| 116 | Two or more physical lines may be joined into logical lines using backslash |
| 117 | characters (``\``), as follows: when a physical line ends in a backslash that is |
| 118 | not part of a string literal or comment, it is joined with the following forming |
| 119 | a single logical line, deleting the backslash and the following end-of-line |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 120 | character. For example:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 121 | |
| 122 | if 1900 < year < 2100 and 1 <= month <= 12 \ |
| 123 | and 1 <= day <= 31 and 0 <= hour < 24 \ |
| 124 | and 0 <= minute < 60 and 0 <= second < 60: # Looks like a valid date |
| 125 | return 1 |
| 126 | |
| 127 | A line ending in a backslash cannot carry a comment. A backslash does not |
| 128 | continue a comment. A backslash does not continue a token except for string |
| 129 | literals (i.e., tokens other than string literals cannot be split across |
| 130 | physical lines using a backslash). A backslash is illegal elsewhere on a line |
| 131 | outside a string literal. |
| 132 | |
| 133 | |
| 134 | .. _implicit-joining: |
| 135 | |
| 136 | Implicit line joining |
| 137 | --------------------- |
| 138 | |
| 139 | Expressions in parentheses, square brackets or curly braces can be split over |
| 140 | more than one physical line without using backslashes. For example:: |
| 141 | |
| 142 | month_names = ['Januari', 'Februari', 'Maart', # These are the |
| 143 | 'April', 'Mei', 'Juni', # Dutch names |
| 144 | 'Juli', 'Augustus', 'September', # for the months |
| 145 | 'Oktober', 'November', 'December'] # of the year |
| 146 | |
| 147 | Implicitly continued lines can carry comments. The indentation of the |
| 148 | continuation lines is not important. Blank continuation lines are allowed. |
| 149 | There is no NEWLINE token between implicit continuation lines. Implicitly |
| 150 | continued lines can also occur within triple-quoted strings (see below); in that |
| 151 | case they cannot carry comments. |
| 152 | |
| 153 | |
| 154 | .. _blank-lines: |
| 155 | |
| 156 | Blank lines |
| 157 | ----------- |
| 158 | |
| 159 | .. index:: single: blank line |
| 160 | |
| 161 | A logical line that contains only spaces, tabs, formfeeds and possibly a |
| 162 | comment, is ignored (i.e., no NEWLINE token is generated). During interactive |
| 163 | input of statements, handling of a blank line may differ depending on the |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 164 | implementation of the read-eval-print loop. In the standard interactive |
| 165 | interpreter, an entirely blank logical line (i.e. one containing not even |
| 166 | whitespace or a comment) terminates a multi-line statement. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 167 | |
| 168 | |
| 169 | .. _indentation: |
| 170 | |
| 171 | Indentation |
| 172 | ----------- |
| 173 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 174 | .. index:: indentation, leading whitespace, space, tab, grouping, statement grouping |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 175 | |
| 176 | Leading whitespace (spaces and tabs) at the beginning of a logical line is used |
| 177 | to compute the indentation level of the line, which in turn is used to determine |
| 178 | the grouping of statements. |
| 179 | |
Georg Brandl | 861ac1f | 2008-12-15 08:43:10 +0000 | [diff] [blame] | 180 | Tabs are replaced (from left to right) by one to eight spaces such that the |
| 181 | total number of characters up to and including the replacement is a multiple of |
| 182 | eight (this is intended to be the same rule as used by Unix). The total number |
| 183 | of spaces preceding the first non-blank character then determines the line's |
| 184 | indentation. Indentation cannot be split over multiple physical lines using |
| 185 | backslashes; the whitespace up to the first backslash determines the |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 186 | indentation. |
| 187 | |
Georg Brandl | 861ac1f | 2008-12-15 08:43:10 +0000 | [diff] [blame] | 188 | Indentation is rejected as inconsistent if a source file mixes tabs and spaces |
| 189 | in a way that makes the meaning dependent on the worth of a tab in spaces; a |
| 190 | :exc:`TabError` is raised in that case. |
| 191 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 192 | **Cross-platform compatibility note:** because of the nature of text editors on |
| 193 | non-UNIX platforms, it is unwise to use a mixture of spaces and tabs for the |
| 194 | indentation in a single source file. It should also be noted that different |
| 195 | platforms may explicitly limit the maximum indentation level. |
| 196 | |
| 197 | A formfeed character may be present at the start of the line; it will be ignored |
| 198 | for the indentation calculations above. Formfeed characters occurring elsewhere |
| 199 | in the leading whitespace have an undefined effect (for instance, they may reset |
| 200 | the space count to zero). |
| 201 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 202 | .. index:: INDENT token, DEDENT token |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 203 | |
| 204 | The indentation levels of consecutive lines are used to generate INDENT and |
| 205 | DEDENT tokens, using a stack, as follows. |
| 206 | |
| 207 | Before the first line of the file is read, a single zero is pushed on the stack; |
| 208 | this will never be popped off again. The numbers pushed on the stack will |
| 209 | always be strictly increasing from bottom to top. At the beginning of each |
| 210 | logical line, the line's indentation level is compared to the top of the stack. |
| 211 | If it is equal, nothing happens. If it is larger, it is pushed on the stack, and |
| 212 | one INDENT token is generated. If it is smaller, it *must* be one of the |
| 213 | numbers occurring on the stack; all numbers on the stack that are larger are |
| 214 | popped off, and for each number popped off a DEDENT token is generated. At the |
| 215 | end of the file, a DEDENT token is generated for each number remaining on the |
| 216 | stack that is larger than zero. |
| 217 | |
| 218 | Here is an example of a correctly (though confusingly) indented piece of Python |
| 219 | code:: |
| 220 | |
| 221 | def perm(l): |
| 222 | # Compute the list of all permutations of l |
| 223 | if len(l) <= 1: |
| 224 | return [l] |
| 225 | r = [] |
| 226 | for i in range(len(l)): |
| 227 | s = l[:i] + l[i+1:] |
| 228 | p = perm(s) |
| 229 | for x in p: |
| 230 | r.append(l[i:i+1] + x) |
| 231 | return r |
| 232 | |
| 233 | The following example shows various indentation errors:: |
| 234 | |
| 235 | def perm(l): # error: first line indented |
| 236 | for i in range(len(l)): # error: not indented |
| 237 | s = l[:i] + l[i+1:] |
| 238 | p = perm(l[:i] + l[i+1:]) # error: unexpected indent |
| 239 | for x in p: |
| 240 | r.append(l[i:i+1] + x) |
| 241 | return r # error: inconsistent dedent |
| 242 | |
| 243 | (Actually, the first three errors are detected by the parser; only the last |
| 244 | error is found by the lexical analyzer --- the indentation of ``return r`` does |
| 245 | not match a level popped off the stack.) |
| 246 | |
| 247 | |
| 248 | .. _whitespace: |
| 249 | |
| 250 | Whitespace between tokens |
| 251 | ------------------------- |
| 252 | |
| 253 | Except at the beginning of a logical line or in string literals, the whitespace |
| 254 | characters space, tab and formfeed can be used interchangeably to separate |
| 255 | tokens. Whitespace is needed between two tokens only if their concatenation |
| 256 | could otherwise be interpreted as a different token (e.g., ab is one token, but |
| 257 | a b is two tokens). |
| 258 | |
| 259 | |
| 260 | .. _other-tokens: |
| 261 | |
| 262 | Other tokens |
| 263 | ============ |
| 264 | |
| 265 | Besides NEWLINE, INDENT and DEDENT, the following categories of tokens exist: |
| 266 | *identifiers*, *keywords*, *literals*, *operators*, and *delimiters*. Whitespace |
| 267 | characters (other than line terminators, discussed earlier) are not tokens, but |
| 268 | serve to delimit tokens. Where ambiguity exists, a token comprises the longest |
| 269 | possible string that forms a legal token, when read from left to right. |
| 270 | |
| 271 | |
| 272 | .. _identifiers: |
| 273 | |
| 274 | Identifiers and keywords |
| 275 | ======================== |
| 276 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 277 | .. index:: identifier, name |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 278 | |
| 279 | Identifiers (also referred to as *names*) are described by the following lexical |
Georg Brandl | e06de8b | 2008-05-05 21:42:51 +0000 | [diff] [blame] | 280 | definitions. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 281 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 282 | The syntax of identifiers in Python is based on the Unicode standard annex |
Georg Brandl | e06de8b | 2008-05-05 21:42:51 +0000 | [diff] [blame] | 283 | UAX-31, with elaboration and changes as defined below; see also :pep:`3131` for |
| 284 | further details. |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 285 | |
| 286 | Within the ASCII range (U+0001..U+007F), the valid characters for identifiers |
Georg Brandl | e06de8b | 2008-05-05 21:42:51 +0000 | [diff] [blame] | 287 | are the same as in Python 2.x: the uppercase and lowercase letters ``A`` through |
| 288 | ``Z``, the underscore ``_`` and, except for the first character, the digits |
| 289 | ``0`` through ``9``. |
| 290 | |
| 291 | Python 3.0 introduces additional characters from outside the ASCII range (see |
| 292 | :pep:`3131`). For these characters, the classification uses the version of the |
| 293 | Unicode Character Database as included in the :mod:`unicodedata` module. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 294 | |
| 295 | Identifiers are unlimited in length. Case is significant. |
| 296 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 297 | .. productionlist:: |
Martin v. Löwis | 0dbebc0 | 2010-12-30 08:36:37 +0000 | [diff] [blame] | 298 | identifier: `xid_start` `xid_continue`* |
Mark Summerfield | 051d1dd | 2007-11-20 13:22:19 +0000 | [diff] [blame] | 299 | id_start: <all characters in general categories Lu, Ll, Lt, Lm, Lo, Nl, the underscore, and characters with the Other_ID_Start property> |
| 300 | id_continue: <all characters in `id_start`, plus characters in the categories Mn, Mc, Nd, Pc and others with the Other_ID_Continue property> |
Martin v. Löwis | 0dbebc0 | 2010-12-30 08:36:37 +0000 | [diff] [blame] | 301 | xid_start: <all characters in `id_start` whose NFKC normalization is in "id_start xid_continue*"> |
| 302 | xid_continue: <all characters in `id_continue` whose NFKC normalization is in "id_continue*"> |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 303 | |
| 304 | The Unicode category codes mentioned above stand for: |
| 305 | |
| 306 | * *Lu* - uppercase letters |
| 307 | * *Ll* - lowercase letters |
| 308 | * *Lt* - titlecase letters |
| 309 | * *Lm* - modifier letters |
| 310 | * *Lo* - other letters |
| 311 | * *Nl* - letter numbers |
| 312 | * *Mn* - nonspacing marks |
| 313 | * *Mc* - spacing combining marks |
| 314 | * *Nd* - decimal numbers |
| 315 | * *Pc* - connector punctuations |
R David Murray | 5f16f90 | 2014-10-09 20:45:59 -0400 | [diff] [blame] | 316 | * *Other_ID_Start* - explicit list of characters in `PropList.txt |
Benjamin Peterson | 7c69c1c | 2018-06-06 20:14:28 -0700 | [diff] [blame] | 317 | <http://www.unicode.org/Public/11.0.0/ucd/PropList.txt>`_ to support backwards |
R David Murray | 5f16f90 | 2014-10-09 20:45:59 -0400 | [diff] [blame] | 318 | compatibility |
Martin v. Löwis | 0dbebc0 | 2010-12-30 08:36:37 +0000 | [diff] [blame] | 319 | * *Other_ID_Continue* - likewise |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 320 | |
Alexander Belopolsky | 1a7a2e0 | 2010-12-22 01:37:36 +0000 | [diff] [blame] | 321 | All identifiers are converted into the normal form NFKC while parsing; comparison |
| 322 | of identifiers is based on NFKC. |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 323 | |
| 324 | A non-normative HTML file listing all valid identifier characters for Unicode |
| 325 | 4.1 can be found at |
Serhiy Storchaka | 6dff020 | 2016-05-07 10:49:07 +0300 | [diff] [blame] | 326 | https://www.dcl.hpi.uni-potsdam.de/home/loewis/table-3131.html. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 327 | |
Mark Summerfield | 051d1dd | 2007-11-20 13:22:19 +0000 | [diff] [blame] | 328 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 329 | .. _keywords: |
| 330 | |
| 331 | Keywords |
| 332 | -------- |
| 333 | |
| 334 | .. index:: |
| 335 | single: keyword |
| 336 | single: reserved word |
| 337 | |
| 338 | The following identifiers are used as reserved words, or *keywords* of the |
| 339 | language, and cannot be used as ordinary identifiers. They must be spelled |
Georg Brandl | 17761d1 | 2009-05-04 20:43:44 +0000 | [diff] [blame] | 340 | exactly as written here: |
| 341 | |
| 342 | .. sourcecode:: text |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 343 | |
Tom Floyer | bf9d317 | 2017-11-08 20:31:26 +0300 | [diff] [blame] | 344 | False await else import pass |
| 345 | None break except in raise |
| 346 | True class finally is return |
| 347 | and continue for lambda try |
| 348 | as def from nonlocal while |
| 349 | assert del global not with |
| 350 | async elif if or yield |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 351 | |
| 352 | .. _id-classes: |
| 353 | |
| 354 | Reserved classes of identifiers |
| 355 | ------------------------------- |
| 356 | |
| 357 | Certain classes of identifiers (besides keywords) have special meanings. These |
| 358 | classes are identified by the patterns of leading and trailing underscore |
| 359 | characters: |
| 360 | |
| 361 | ``_*`` |
| 362 | Not imported by ``from module import *``. The special identifier ``_`` is used |
| 363 | in the interactive interpreter to store the result of the last evaluation; it is |
Georg Brandl | 1a3284e | 2007-12-02 09:40:06 +0000 | [diff] [blame] | 364 | stored in the :mod:`builtins` module. When not in interactive mode, ``_`` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 365 | has no special meaning and is not defined. See section :ref:`import`. |
| 366 | |
| 367 | .. note:: |
| 368 | |
| 369 | The name ``_`` is often used in conjunction with internationalization; |
| 370 | refer to the documentation for the :mod:`gettext` module for more |
| 371 | information on this convention. |
| 372 | |
| 373 | ``__*__`` |
Georg Brandl | 7d180a0 | 2010-08-02 19:32:43 +0000 | [diff] [blame] | 374 | System-defined names. These names are defined by the interpreter and its |
| 375 | implementation (including the standard library). Current system names are |
| 376 | discussed in the :ref:`specialnames` section and elsewhere. More will likely |
| 377 | be defined in future versions of Python. *Any* use of ``__*__`` names, in |
| 378 | any context, that does not follow explicitly documented use, is subject to |
| 379 | breakage without warning. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 380 | |
| 381 | ``__*`` |
| 382 | Class-private names. Names in this category, when used within the context of a |
| 383 | class definition, are re-written to use a mangled form to help avoid name |
| 384 | clashes between "private" attributes of base and derived classes. See section |
| 385 | :ref:`atom-identifiers`. |
| 386 | |
| 387 | |
| 388 | .. _literals: |
| 389 | |
| 390 | Literals |
| 391 | ======== |
| 392 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 393 | .. index:: literal, constant |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 394 | |
| 395 | Literals are notations for constant values of some built-in types. |
| 396 | |
| 397 | |
| 398 | .. _strings: |
| 399 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 400 | String and Bytes literals |
| 401 | ------------------------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 402 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 403 | .. index:: string literal, bytes literal, ASCII |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 404 | |
| 405 | String literals are described by the following lexical definitions: |
| 406 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 407 | .. productionlist:: |
| 408 | stringliteral: [`stringprefix`](`shortstring` | `longstring`) |
Martin Panter | bc1ee46 | 2016-02-13 00:41:37 +0000 | [diff] [blame] | 409 | stringprefix: "r" | "u" | "R" | "U" | "f" | "F" |
| 410 | : | "fr" | "Fr" | "fR" | "FR" | "rf" | "rF" | "Rf" | "RF" |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 411 | shortstring: "'" `shortstringitem`* "'" | '"' `shortstringitem`* '"' |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 412 | longstring: "'''" `longstringitem`* "'''" | '"""' `longstringitem`* '"""' |
| 413 | shortstringitem: `shortstringchar` | `stringescapeseq` |
| 414 | longstringitem: `longstringchar` | `stringescapeseq` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 415 | shortstringchar: <any source character except "\" or newline or the quote> |
| 416 | longstringchar: <any source character except "\"> |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 417 | stringescapeseq: "\" <any source character> |
| 418 | |
| 419 | .. productionlist:: |
| 420 | bytesliteral: `bytesprefix`(`shortbytes` | `longbytes`) |
Antoine Pitrou | 3a5d4cb | 2012-01-12 22:46:19 +0100 | [diff] [blame] | 421 | bytesprefix: "b" | "B" | "br" | "Br" | "bR" | "BR" | "rb" | "rB" | "Rb" | "RB" |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 422 | shortbytes: "'" `shortbytesitem`* "'" | '"' `shortbytesitem`* '"' |
| 423 | longbytes: "'''" `longbytesitem`* "'''" | '"""' `longbytesitem`* '"""' |
| 424 | shortbytesitem: `shortbyteschar` | `bytesescapeseq` |
| 425 | longbytesitem: `longbyteschar` | `bytesescapeseq` |
| 426 | shortbyteschar: <any ASCII character except "\" or newline or the quote> |
| 427 | longbyteschar: <any ASCII character except "\"> |
| 428 | bytesescapeseq: "\" <any ASCII character> |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 429 | |
| 430 | One syntactic restriction not indicated by these productions is that whitespace |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 431 | is not allowed between the :token:`stringprefix` or :token:`bytesprefix` and the |
| 432 | rest of the literal. The source character set is defined by the encoding |
| 433 | declaration; it is UTF-8 if no encoding declaration is given in the source file; |
| 434 | see section :ref:`encodings`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 435 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 436 | .. index:: triple-quoted string, Unicode Consortium, raw string |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 437 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 438 | In plain English: Both types of literals can be enclosed in matching single quotes |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 439 | (``'``) or double quotes (``"``). They can also be enclosed in matching groups |
| 440 | of three single or double quotes (these are generally referred to as |
| 441 | *triple-quoted strings*). The backslash (``\``) character is used to escape |
| 442 | characters that otherwise have a special meaning, such as newline, backslash |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 443 | itself, or the quote character. |
| 444 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 445 | Bytes literals are always prefixed with ``'b'`` or ``'B'``; they produce an |
| 446 | instance of the :class:`bytes` type instead of the :class:`str` type. They |
| 447 | may only contain ASCII characters; bytes with a numeric value of 128 or greater |
| 448 | must be expressed with escapes. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 449 | |
Georg Brandl | 0182f38 | 2012-06-20 11:26:03 +0200 | [diff] [blame] | 450 | Both string and bytes literals may optionally be prefixed with a letter ``'r'`` |
Benjamin Peterson | 162dd74 | 2010-06-29 15:57:57 +0000 | [diff] [blame] | 451 | or ``'R'``; such strings are called :dfn:`raw strings` and treat backslashes as |
| 452 | literal characters. As a result, in string literals, ``'\U'`` and ``'\u'`` |
Christian Heimes | 0b3847d | 2012-06-20 11:17:58 +0200 | [diff] [blame] | 453 | escapes in raw strings are not treated specially. Given that Python 2.x's raw |
| 454 | unicode literals behave differently than Python 3.x's the ``'ur'`` syntax |
| 455 | is not supported. |
Benjamin Peterson | 162dd74 | 2010-06-29 15:57:57 +0000 | [diff] [blame] | 456 | |
Georg Brandl | a4c8c47 | 2014-10-31 10:38:49 +0100 | [diff] [blame] | 457 | .. versionadded:: 3.3 |
| 458 | The ``'rb'`` prefix of raw bytes literals has been added as a synonym |
| 459 | of ``'br'``. |
Antoine Pitrou | 3a5d4cb | 2012-01-12 22:46:19 +0100 | [diff] [blame] | 460 | |
Georg Brandl | a4c8c47 | 2014-10-31 10:38:49 +0100 | [diff] [blame] | 461 | .. versionadded:: 3.3 |
| 462 | Support for the unicode legacy literal (``u'value'``) was reintroduced |
| 463 | to simplify the maintenance of dual Python 2.x and 3.x codebases. |
| 464 | See :pep:`414` for more information. |
Armin Ronacher | 50364b4 | 2012-03-04 12:33:51 +0000 | [diff] [blame] | 465 | |
Martin Panter | bc1ee46 | 2016-02-13 00:41:37 +0000 | [diff] [blame] | 466 | A string literal with ``'f'`` or ``'F'`` in its prefix is a |
| 467 | :dfn:`formatted string literal`; see :ref:`f-strings`. The ``'f'`` may be |
| 468 | combined with ``'r'``, but not with ``'b'`` or ``'u'``, therefore raw |
| 469 | formatted strings are possible, but formatted bytes literals are not. |
| 470 | |
Georg Brandl | a4c8c47 | 2014-10-31 10:38:49 +0100 | [diff] [blame] | 471 | In triple-quoted literals, unescaped newlines and quotes are allowed (and are |
| 472 | retained), except that three unescaped quotes in a row terminate the literal. (A |
| 473 | "quote" is the character used to open the literal, i.e. either ``'`` or ``"``.) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 474 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 475 | .. index:: physical line, escape sequence, Standard C, C |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 476 | |
Georg Brandl | a4c8c47 | 2014-10-31 10:38:49 +0100 | [diff] [blame] | 477 | Unless an ``'r'`` or ``'R'`` prefix is present, escape sequences in string and |
| 478 | bytes literals are interpreted according to rules similar to those used by |
| 479 | Standard C. The recognized escape sequences are: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 480 | |
| 481 | +-----------------+---------------------------------+-------+ |
| 482 | | Escape Sequence | Meaning | Notes | |
| 483 | +=================+=================================+=======+ |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 484 | | ``\newline`` | Backslash and newline ignored | | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 485 | +-----------------+---------------------------------+-------+ |
| 486 | | ``\\`` | Backslash (``\``) | | |
| 487 | +-----------------+---------------------------------+-------+ |
| 488 | | ``\'`` | Single quote (``'``) | | |
| 489 | +-----------------+---------------------------------+-------+ |
| 490 | | ``\"`` | Double quote (``"``) | | |
| 491 | +-----------------+---------------------------------+-------+ |
| 492 | | ``\a`` | ASCII Bell (BEL) | | |
| 493 | +-----------------+---------------------------------+-------+ |
| 494 | | ``\b`` | ASCII Backspace (BS) | | |
| 495 | +-----------------+---------------------------------+-------+ |
| 496 | | ``\f`` | ASCII Formfeed (FF) | | |
| 497 | +-----------------+---------------------------------+-------+ |
| 498 | | ``\n`` | ASCII Linefeed (LF) | | |
| 499 | +-----------------+---------------------------------+-------+ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 500 | | ``\r`` | ASCII Carriage Return (CR) | | |
| 501 | +-----------------+---------------------------------+-------+ |
| 502 | | ``\t`` | ASCII Horizontal Tab (TAB) | | |
| 503 | +-----------------+---------------------------------+-------+ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 504 | | ``\v`` | ASCII Vertical Tab (VT) | | |
| 505 | +-----------------+---------------------------------+-------+ |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 506 | | ``\ooo`` | Character with octal value | (1,3) | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 507 | | | *ooo* | | |
| 508 | +-----------------+---------------------------------+-------+ |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 509 | | ``\xhh`` | Character with hex value *hh* | (2,3) | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 510 | +-----------------+---------------------------------+-------+ |
| 511 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 512 | Escape sequences only recognized in string literals are: |
| 513 | |
| 514 | +-----------------+---------------------------------+-------+ |
| 515 | | Escape Sequence | Meaning | Notes | |
| 516 | +=================+=================================+=======+ |
Ezio Melotti | 931b8aa | 2011-10-21 21:57:36 +0300 | [diff] [blame] | 517 | | ``\N{name}`` | Character named *name* in the | \(4) | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 518 | | | Unicode database | | |
| 519 | +-----------------+---------------------------------+-------+ |
Ezio Melotti | 931b8aa | 2011-10-21 21:57:36 +0300 | [diff] [blame] | 520 | | ``\uxxxx`` | Character with 16-bit hex value | \(5) | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 521 | | | *xxxx* | | |
| 522 | +-----------------+---------------------------------+-------+ |
Ezio Melotti | 931b8aa | 2011-10-21 21:57:36 +0300 | [diff] [blame] | 523 | | ``\Uxxxxxxxx`` | Character with 32-bit hex value | \(6) | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 524 | | | *xxxxxxxx* | | |
| 525 | +-----------------+---------------------------------+-------+ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 526 | |
| 527 | Notes: |
| 528 | |
| 529 | (1) |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 530 | As in Standard C, up to three octal digits are accepted. |
| 531 | |
| 532 | (2) |
Florent Xicluna | 4e0f891 | 2010-03-15 13:14:39 +0000 | [diff] [blame] | 533 | Unlike in Standard C, exactly two hex digits are required. |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 534 | |
| 535 | (3) |
| 536 | In a bytes literal, hexadecimal and octal escapes denote the byte with the |
| 537 | given value. In a string literal, these escapes denote a Unicode character |
| 538 | with the given value. |
| 539 | |
| 540 | (4) |
Ezio Melotti | 931b8aa | 2011-10-21 21:57:36 +0300 | [diff] [blame] | 541 | .. versionchanged:: 3.3 |
| 542 | Support for name aliases [#]_ has been added. |
| 543 | |
| 544 | (5) |
Berker Peksag | 4f35d79 | 2016-04-24 03:13:40 +0300 | [diff] [blame] | 545 | Exactly four hex digits are required. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 546 | |
Ezio Melotti | 931b8aa | 2011-10-21 21:57:36 +0300 | [diff] [blame] | 547 | (6) |
Ezio Melotti | e7f9037 | 2012-10-05 03:33:31 +0300 | [diff] [blame] | 548 | Any Unicode character can be encoded this way. Exactly eight hex digits |
Georg Brandl | e43baab | 2010-05-10 21:17:00 +0000 | [diff] [blame] | 549 | are required. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 550 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 551 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 552 | .. index:: unrecognized escape sequence |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 553 | |
| 554 | Unlike Standard C, all unrecognized escape sequences are left in the string |
Georg Brandl | a4c8c47 | 2014-10-31 10:38:49 +0100 | [diff] [blame] | 555 | unchanged, i.e., *the backslash is left in the result*. (This behavior is |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 556 | useful when debugging: if an escape sequence is mistyped, the resulting output |
| 557 | is more easily recognized as broken.) It is also important to note that the |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 558 | escape sequences only recognized in string literals fall into the category of |
| 559 | unrecognized escapes for bytes literals. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 560 | |
R David Murray | 110b6fe | 2016-09-08 15:34:08 -0400 | [diff] [blame] | 561 | .. versionchanged:: 3.6 |
| 562 | Unrecognized escape sequences produce a DeprecationWarning. In |
| 563 | some future version of Python they will be a SyntaxError. |
| 564 | |
Georg Brandl | a4c8c47 | 2014-10-31 10:38:49 +0100 | [diff] [blame] | 565 | Even in a raw literal, quotes can be escaped with a backslash, but the |
| 566 | backslash remains in the result; for example, ``r"\""`` is a valid string |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 567 | literal consisting of two characters: a backslash and a double quote; ``r"\"`` |
| 568 | is not a valid string literal (even a raw string cannot end in an odd number of |
Georg Brandl | a4c8c47 | 2014-10-31 10:38:49 +0100 | [diff] [blame] | 569 | backslashes). Specifically, *a raw literal cannot end in a single backslash* |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 570 | (since the backslash would escape the following quote character). Note also |
| 571 | that a single backslash followed by a newline is interpreted as those two |
Georg Brandl | a4c8c47 | 2014-10-31 10:38:49 +0100 | [diff] [blame] | 572 | characters as part of the literal, *not* as a line continuation. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 573 | |
| 574 | |
İsmail Arılık | 3764bb0 | 2018-01-12 09:18:54 +0300 | [diff] [blame] | 575 | .. _string-concatenation: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 576 | |
| 577 | String literal concatenation |
| 578 | ---------------------------- |
| 579 | |
Benjamin Peterson | 162dd74 | 2010-06-29 15:57:57 +0000 | [diff] [blame] | 580 | Multiple adjacent string or bytes literals (delimited by whitespace), possibly |
| 581 | using different quoting conventions, are allowed, and their meaning is the same |
| 582 | as their concatenation. Thus, ``"hello" 'world'`` is equivalent to |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 583 | ``"helloworld"``. This feature can be used to reduce the number of backslashes |
| 584 | needed, to split long strings conveniently across long lines, or even to add |
| 585 | comments to parts of strings, for example:: |
| 586 | |
| 587 | re.compile("[A-Za-z_]" # letter or underscore |
| 588 | "[A-Za-z0-9_]*" # letter, digit or underscore |
| 589 | ) |
| 590 | |
| 591 | Note that this feature is defined at the syntactical level, but implemented at |
| 592 | compile time. The '+' operator must be used to concatenate string expressions |
| 593 | at run time. Also note that literal concatenation can use different quoting |
Martin Panter | bc1ee46 | 2016-02-13 00:41:37 +0000 | [diff] [blame] | 594 | styles for each component (even mixing raw strings and triple quoted strings), |
| 595 | and formatted string literals may be concatenated with plain string literals. |
| 596 | |
| 597 | |
| 598 | .. index:: |
| 599 | single: formatted string literal |
| 600 | single: interpolated string literal |
| 601 | single: string; formatted literal |
| 602 | single: string; interpolated literal |
| 603 | single: f-string |
| 604 | .. _f-strings: |
| 605 | |
| 606 | Formatted string literals |
| 607 | ------------------------- |
| 608 | |
| 609 | .. versionadded:: 3.6 |
| 610 | |
| 611 | A :dfn:`formatted string literal` or :dfn:`f-string` is a string literal |
| 612 | that is prefixed with ``'f'`` or ``'F'``. These strings may contain |
| 613 | replacement fields, which are expressions delimited by curly braces ``{}``. |
| 614 | While other string literals always have a constant value, formatted strings |
| 615 | are really expressions evaluated at run time. |
| 616 | |
| 617 | Escape sequences are decoded like in ordinary string literals (except when |
| 618 | a literal is also marked as a raw string). After decoding, the grammar |
| 619 | for the contents of the string is: |
| 620 | |
| 621 | .. productionlist:: |
| 622 | f_string: (`literal_char` | "{{" | "}}" | `replacement_field`)* |
| 623 | replacement_field: "{" `f_expression` ["!" `conversion`] [":" `format_spec`] "}" |
Martin Panter | ed74e24 | 2016-06-12 01:56:24 +0000 | [diff] [blame] | 624 | f_expression: (`conditional_expression` | "*" `or_expr`) |
| 625 | : ("," `conditional_expression` | "," "*" `or_expr`)* [","] |
Martin Panter | bc1ee46 | 2016-02-13 00:41:37 +0000 | [diff] [blame] | 626 | : | `yield_expression` |
| 627 | conversion: "s" | "r" | "a" |
| 628 | format_spec: (`literal_char` | NULL | `replacement_field`)* |
| 629 | literal_char: <any code point except "{", "}" or NULL> |
| 630 | |
| 631 | The parts of the string outside curly braces are treated literally, |
| 632 | except that any doubled curly braces ``'{{'`` or ``'}}'`` are replaced |
| 633 | with the corresponding single curly brace. A single opening curly |
| 634 | bracket ``'{'`` marks a replacement field, which starts with a |
| 635 | Python expression. After the expression, there may be a conversion field, |
| 636 | introduced by an exclamation point ``'!'``. A format specifier may also |
| 637 | be appended, introduced by a colon ``':'``. A replacement field ends |
| 638 | with a closing curly bracket ``'}'``. |
| 639 | |
| 640 | Expressions in formatted string literals are treated like regular |
| 641 | Python expressions surrounded by parentheses, with a few exceptions. |
| 642 | An empty expression is not allowed, and a :keyword:`lambda` expression |
| 643 | must be surrounded by explicit parentheses. Replacement expressions |
| 644 | can contain line breaks (e.g. in triple-quoted strings), but they |
| 645 | cannot contain comments. Each expression is evaluated in the context |
| 646 | where the formatted string literal appears, in order from left to right. |
| 647 | |
| 648 | If a conversion is specified, the result of evaluating the expression |
| 649 | is converted before formatting. Conversion ``'!s'`` calls :func:`str` on |
| 650 | the result, ``'!r'`` calls :func:`repr`, and ``'!a'`` calls :func:`ascii`. |
| 651 | |
| 652 | The result is then formatted using the :func:`format` protocol. The |
| 653 | format specifier is passed to the :meth:`__format__` method of the |
| 654 | expression or conversion result. An empty string is passed when the |
| 655 | format specifier is omitted. The formatted result is then included in |
| 656 | the final value of the whole string. |
| 657 | |
KatherineMichel | f4e21a2 | 2017-12-19 15:03:09 -0600 | [diff] [blame] | 658 | Top-level format specifiers may include nested replacement fields. These nested |
| 659 | fields may include their own conversion fields and :ref:`format specifiers |
| 660 | <formatspec>`, but may not include more deeply-nested replacement fields. The |
| 661 | :ref:`format specifier mini-language <formatspec>` is the same as that used by |
| 662 | the string .format() method. |
Martin Panter | bc1ee46 | 2016-02-13 00:41:37 +0000 | [diff] [blame] | 663 | |
| 664 | Formatted string literals may be concatenated, but replacement fields |
| 665 | cannot be split across literals. |
| 666 | |
| 667 | Some examples of formatted string literals:: |
| 668 | |
| 669 | >>> name = "Fred" |
| 670 | >>> f"He said his name is {name!r}." |
| 671 | "He said his name is 'Fred'." |
| 672 | >>> f"He said his name is {repr(name)}." # repr() is equivalent to !r |
| 673 | "He said his name is 'Fred'." |
| 674 | >>> width = 10 |
| 675 | >>> precision = 4 |
| 676 | >>> value = decimal.Decimal("12.34567") |
| 677 | >>> f"result: {value:{width}.{precision}}" # nested fields |
| 678 | 'result: 12.35' |
Mariatta | f361897 | 2017-09-16 11:46:43 -0700 | [diff] [blame] | 679 | >>> today = datetime(year=2017, month=1, day=27) |
Cheryl Sabella | b299393 | 2018-01-31 16:37:51 -0500 | [diff] [blame] | 680 | >>> f"{today:%B %d, %Y}" # using date format specifier |
Mariatta | f361897 | 2017-09-16 11:46:43 -0700 | [diff] [blame] | 681 | 'January 27, 2017' |
| 682 | >>> number = 1024 |
Mariatta | 63c591c | 2017-09-17 07:43:31 -0700 | [diff] [blame] | 683 | >>> f"{number:#0x}" # using integer format specifier |
Mariatta | f361897 | 2017-09-16 11:46:43 -0700 | [diff] [blame] | 684 | '0x400' |
Martin Panter | bc1ee46 | 2016-02-13 00:41:37 +0000 | [diff] [blame] | 685 | |
| 686 | A consequence of sharing the same syntax as regular string literals is |
| 687 | that characters in the replacement fields must not conflict with the |
Jason R. Coombs | f66f03b | 2016-11-06 11:27:17 -0500 | [diff] [blame] | 688 | quoting used in the outer formatted string literal:: |
Martin Panter | bc1ee46 | 2016-02-13 00:41:37 +0000 | [diff] [blame] | 689 | |
| 690 | f"abc {a["x"]} def" # error: outer string literal ended prematurely |
Martin Panter | bc1ee46 | 2016-02-13 00:41:37 +0000 | [diff] [blame] | 691 | f"abc {a['x']} def" # workaround: use different quoting |
| 692 | |
Jason R. Coombs | f66f03b | 2016-11-06 11:27:17 -0500 | [diff] [blame] | 693 | Backslashes are not allowed in format expressions and will raise |
| 694 | an error:: |
| 695 | |
| 696 | f"newline: {ord('\n')}" # raises SyntaxError |
| 697 | |
| 698 | To include a value in which a backslash escape is required, create |
| 699 | a temporary variable. |
| 700 | |
| 701 | >>> newline = ord('\n') |
| 702 | >>> f"newline: {newline}" |
| 703 | 'newline: 10' |
Martin Panter | bc1ee46 | 2016-02-13 00:41:37 +0000 | [diff] [blame] | 704 | |
Mariatta | d4e8928 | 2017-03-10 08:58:40 -0800 | [diff] [blame] | 705 | Formatted string literals cannot be used as docstrings, even if they do not |
| 706 | include expressions. |
| 707 | |
| 708 | :: |
| 709 | |
| 710 | >>> def foo(): |
| 711 | ... f"Not a docstring" |
| 712 | ... |
| 713 | >>> foo.__doc__ is None |
| 714 | True |
| 715 | |
Martin Panter | bc1ee46 | 2016-02-13 00:41:37 +0000 | [diff] [blame] | 716 | See also :pep:`498` for the proposal that added formatted string literals, |
| 717 | and :meth:`str.format`, which uses a related format string mechanism. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 718 | |
| 719 | |
| 720 | .. _numbers: |
| 721 | |
| 722 | Numeric literals |
| 723 | ---------------- |
| 724 | |
Georg Brandl | ba956ae | 2007-11-29 17:24:34 +0000 | [diff] [blame] | 725 | .. index:: number, numeric literal, integer literal |
| 726 | floating point literal, hexadecimal literal |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 727 | octal literal, binary literal, decimal literal, imaginary literal, complex literal |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 728 | |
Georg Brandl | 95817b3 | 2008-05-11 14:30:18 +0000 | [diff] [blame] | 729 | There are three types of numeric literals: integers, floating point numbers, and |
| 730 | imaginary numbers. There are no complex literals (complex numbers can be formed |
| 731 | by adding a real number and an imaginary number). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 732 | |
| 733 | Note that numeric literals do not include a sign; a phrase like ``-1`` is |
| 734 | actually an expression composed of the unary operator '``-``' and the literal |
| 735 | ``1``. |
| 736 | |
| 737 | |
| 738 | .. _integers: |
| 739 | |
| 740 | Integer literals |
| 741 | ---------------- |
| 742 | |
| 743 | Integer literals are described by the following lexical definitions: |
| 744 | |
| 745 | .. productionlist:: |
Brett Cannon | a721aba | 2016-09-09 14:57:09 -0700 | [diff] [blame] | 746 | integer: `decinteger` | `bininteger` | `octinteger` | `hexinteger` |
| 747 | decinteger: `nonzerodigit` (["_"] `digit`)* | "0"+ (["_"] "0")* |
| 748 | bininteger: "0" ("b" | "B") (["_"] `bindigit`)+ |
| 749 | octinteger: "0" ("o" | "O") (["_"] `octdigit`)+ |
| 750 | hexinteger: "0" ("x" | "X") (["_"] `hexdigit`)+ |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 751 | nonzerodigit: "1"..."9" |
| 752 | digit: "0"..."9" |
Brett Cannon | a721aba | 2016-09-09 14:57:09 -0700 | [diff] [blame] | 753 | bindigit: "0" | "1" |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 754 | octdigit: "0"..."7" |
| 755 | hexdigit: `digit` | "a"..."f" | "A"..."F" |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 756 | |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 757 | There is no limit for the length of integer literals apart from what can be |
| 758 | stored in available memory. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 759 | |
Brett Cannon | a721aba | 2016-09-09 14:57:09 -0700 | [diff] [blame] | 760 | Underscores are ignored for determining the numeric value of the literal. They |
| 761 | can be used to group digits for enhanced readability. One underscore can occur |
| 762 | between digits, and after base specifiers like ``0x``. |
| 763 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 764 | Note that leading zeros in a non-zero decimal number are not allowed. This is |
| 765 | for disambiguation with C-style octal literals, which Python used before version |
| 766 | 3.0. |
| 767 | |
| 768 | Some examples of integer literals:: |
| 769 | |
| 770 | 7 2147483647 0o177 0b100110111 |
Raymond Hettinger | 9ecf9e2 | 2015-05-22 16:37:49 -0700 | [diff] [blame] | 771 | 3 79228162514264337593543950336 0o377 0xdeadbeef |
Brett Cannon | a721aba | 2016-09-09 14:57:09 -0700 | [diff] [blame] | 772 | 100_000_000_000 0b_1110_0101 |
| 773 | |
| 774 | .. versionchanged:: 3.6 |
| 775 | Underscores are now allowed for grouping purposes in literals. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 776 | |
| 777 | |
| 778 | .. _floating: |
| 779 | |
| 780 | Floating point literals |
| 781 | ----------------------- |
| 782 | |
| 783 | Floating point literals are described by the following lexical definitions: |
| 784 | |
| 785 | .. productionlist:: |
| 786 | floatnumber: `pointfloat` | `exponentfloat` |
Brett Cannon | a721aba | 2016-09-09 14:57:09 -0700 | [diff] [blame] | 787 | pointfloat: [`digitpart`] `fraction` | `digitpart` "." |
| 788 | exponentfloat: (`digitpart` | `pointfloat`) `exponent` |
| 789 | digitpart: `digit` (["_"] `digit`)* |
| 790 | fraction: "." `digitpart` |
| 791 | exponent: ("e" | "E") ["+" | "-"] `digitpart` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 792 | |
| 793 | Note that the integer and exponent parts are always interpreted using radix 10. |
| 794 | For example, ``077e010`` is legal, and denotes the same number as ``77e10``. The |
Brett Cannon | a721aba | 2016-09-09 14:57:09 -0700 | [diff] [blame] | 795 | allowed range of floating point literals is implementation-dependent. As in |
| 796 | integer literals, underscores are supported for digit grouping. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 797 | |
Brett Cannon | a721aba | 2016-09-09 14:57:09 -0700 | [diff] [blame] | 798 | Some examples of floating point literals:: |
| 799 | |
| 800 | 3.14 10. .001 1e100 3.14e-10 0e0 3.14_15_93 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 801 | |
Brett Cannon | a721aba | 2016-09-09 14:57:09 -0700 | [diff] [blame] | 802 | .. versionchanged:: 3.6 |
| 803 | Underscores are now allowed for grouping purposes in literals. |
| 804 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 805 | |
| 806 | .. _imaginary: |
| 807 | |
| 808 | Imaginary literals |
| 809 | ------------------ |
| 810 | |
| 811 | Imaginary literals are described by the following lexical definitions: |
| 812 | |
| 813 | .. productionlist:: |
Brett Cannon | a721aba | 2016-09-09 14:57:09 -0700 | [diff] [blame] | 814 | imagnumber: (`floatnumber` | `digitpart`) ("j" | "J") |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 815 | |
| 816 | An imaginary literal yields a complex number with a real part of 0.0. Complex |
| 817 | numbers are represented as a pair of floating point numbers and have the same |
| 818 | restrictions on their range. To create a complex number with a nonzero real |
| 819 | part, add a floating point number to it, e.g., ``(3+4j)``. Some examples of |
| 820 | imaginary literals:: |
| 821 | |
Brett Cannon | a721aba | 2016-09-09 14:57:09 -0700 | [diff] [blame] | 822 | 3.14j 10.j 10j .001j 1e100j 3.14e-10j 3.14_15_93j |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 823 | |
| 824 | |
| 825 | .. _operators: |
| 826 | |
| 827 | Operators |
| 828 | ========= |
| 829 | |
| 830 | .. index:: single: operators |
| 831 | |
Martin Panter | 1050d2d | 2016-07-26 11:18:21 +0200 | [diff] [blame] | 832 | The following tokens are operators: |
| 833 | |
| 834 | .. code-block:: none |
| 835 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 836 | |
Benjamin Peterson | bd59241 | 2014-08-06 22:50:30 -0700 | [diff] [blame] | 837 | + - * ** / // % @ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 838 | << >> & | ^ ~ |
| 839 | < > <= >= == != |
| 840 | |
| 841 | |
| 842 | .. _delimiters: |
| 843 | |
| 844 | Delimiters |
| 845 | ========== |
| 846 | |
| 847 | .. index:: single: delimiters |
| 848 | |
Martin Panter | 1050d2d | 2016-07-26 11:18:21 +0200 | [diff] [blame] | 849 | The following tokens serve as delimiters in the grammar: |
| 850 | |
| 851 | .. code-block:: none |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 852 | |
Georg Brandl | 0df7979 | 2008-10-04 18:33:26 +0000 | [diff] [blame] | 853 | ( ) [ ] { } |
Georg Brandl | 97f9623 | 2013-10-08 21:28:22 +0200 | [diff] [blame] | 854 | , : . ; @ = -> |
Benjamin Peterson | bd59241 | 2014-08-06 22:50:30 -0700 | [diff] [blame] | 855 | += -= *= /= //= %= @= |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 856 | &= |= ^= >>= <<= **= |
| 857 | |
| 858 | The period can also occur in floating-point and imaginary literals. A sequence |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 859 | of three periods has a special meaning as an ellipsis literal. The second half |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 860 | of the list, the augmented assignment operators, serve lexically as delimiters, |
| 861 | but also perform an operation. |
| 862 | |
| 863 | The following printing ASCII characters have special meaning as part of other |
Martin Panter | 1050d2d | 2016-07-26 11:18:21 +0200 | [diff] [blame] | 864 | tokens or are otherwise significant to the lexical analyzer: |
| 865 | |
| 866 | .. code-block:: none |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 867 | |
| 868 | ' " # \ |
| 869 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 870 | The following printing ASCII characters are not used in Python. Their |
Martin Panter | 1050d2d | 2016-07-26 11:18:21 +0200 | [diff] [blame] | 871 | occurrence outside string literals and comments is an unconditional error: |
| 872 | |
| 873 | .. code-block:: none |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 874 | |
Georg Brandl | e43baab | 2010-05-10 21:17:00 +0000 | [diff] [blame] | 875 | $ ? ` |
Ezio Melotti | 931b8aa | 2011-10-21 21:57:36 +0300 | [diff] [blame] | 876 | |
| 877 | |
| 878 | .. rubric:: Footnotes |
| 879 | |
Benjamin Peterson | 7c69c1c | 2018-06-06 20:14:28 -0700 | [diff] [blame] | 880 | .. [#] http://www.unicode.org/Public/11.0.0/ucd/NameAliases.txt |