(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/other-tokens.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/lexical.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/keywords.html| ]]
|
Python Reference Manual
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/contents.html| ]]
|
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/genindex.html| ]]
|
Previous: 2.2 Other tokens Up: 2. Lexical analysis Next: 2.3.1 Keywords
2.3 Identifiers and keywords
Identifiers (also referred to as names) are described by the following lexical definitions:
identifier: (letter|"_") (letter|digit|"_")*
letter: lowercase | uppercase
lowercase: "a"..."z"
uppercase: "A"..."Z"
digit: "0"..."9"
Identifiers are unlimited in length. Case is significant.
Subsections
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/other-tokens.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/lexical.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/keywords.html| ]]
|
Python Reference Manual
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/contents.html| ]]
|
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/genindex.html| ]]
|
Previous: 2.2 Other tokens Up: 2. Lexical analysis Next: 2.3.1 Keywords
See About this document... for information on suggesting changes.