beginnerPython
What are Python keywords?
Answer
Clear, interview-ready explanation
Python keywords are reserved words that have special meanings in the language. They are part of Python’s syntax and cannot normally be used as variable, function, or class names.
Common Python keywords include:
if else elif for while def class
return try except import from True
False None and or not in is