(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/152/ref/datamodel.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/152/ref/lexical.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/152/ref/operators.html| ]]
|
Python Reference Manual
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/152/ref/contents.html| ]]
|
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/152/ref/genindex.html| ]]
|
Next: 3. Data model Up: 2. Lexical analysis Previous: 2.5 Operators
2.6 Delimiters
The following tokens serve as delimiters in the grammar:
( ) [ ] { }
, : . ` = ;
The period can also occur in floating-point and imaginary literals. A sequence of three periods has a special meaning as an ellipsis in slices.
The following printing ASCII characters have special meaning as part of other tokens or are otherwise significant to the lexical analyzer:
' " # \
The following printing ASCII characters are not used in Python. Their occurrence outside string literals and comments is an unconditional error:
@ $ ?
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/152/ref/datamodel.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/152/ref/lexical.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/152/ref/operators.html| ]]
|
Python Reference Manual
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/152/ref/contents.html| ]]
|
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/152/ref/genindex.html| ]]
|
Next: 3. Data model Up: 2. Lexical analysis Previous: 2.5 Operators
Send comments on this document to python-docs@python.org.