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

Revision as of 18:49, 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/152/ref/keywords.html|[[Image:yurttas_PL...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


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.



Send comments on this document to python-docs@python.org.