Yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/identifiers.html

From ZCubes Wiki
Revision as of 20:10, 7 November 2013 by MassBot1 (talk | contribs) (Created page with "<div class="navigation"> {| width="100%" cellspacing="2" align="center" | yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/other-tokens.html|[[Image:yurttas...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


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


See About this document... for information on suggesting changes.