reserved


formal or self-restrained in manner and relationship; avoiding familiarity or intimacy with others: a quiet, reserved man. characterized by reserve, as the disposition, manner, etc.: reserved comments. retaining the original color of a surface, especially when decorating portions of the surface with other colors. OTHER WORDS FOR reserved



The Python language reserves a small set of keywords that designate special language functionality. No object can have the same name as a reserved word. In Python 3.6, there are 33 reserved keywords: You can see this list any time by typing help ("keywords") to the Python interpreter.



Keywords in Python are reserved words that can not be used as a variable name, function name, or any other identifier. List of all keywords in Python We can also get all the keyword names using the below code. Example: Python Keywords List Python3 import keyword print("The list of keywords is : ") print(keyword.kwlist) Output