Python keywords

Python keywords are reserved words that cannot be used as variable names. The keyword module contains all the keywords in Python. Let's generate all Python keywords:

>>> import keyword
>>> print (keyword.kwlist)
['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'class',
'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for',
'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal',
'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']




















endmemo.com © 2024  | Terms of Use | Privacy | Home