Robotics & Artificial Intelligence
Write short notes on Keywords with reference to Python language.
Getting Started
1 Like
Answer
Keywords are the reserved words which are preserved by the system and carry special meaning for the language translator (interpreter). These words cannot be used as variable names in the program. Some examples of Python keywords are False, class, else, return, None, continue, for, not, True, def, if, or, and, del, import, pass, break, elif, is, while, etc.
Answered By
2 Likes