Python Keywords
Python is a cross-platform programming language, which means that it can run on multiple platforms like Windows, macOS, Linux, etc.
- Machine Learning
- Web Development
- Data Analysis
- Scientific research
- Automation
Keywords
Keywords are the reserved words in python, Keywords are used to define the syntax and structure of the python language.
we cannot use a keyword as a variable name, function name, or any other identifier.
There are 33 keywords in python 3.7, All keywords except True, False, and None are in lower case.
Below are the list of keywords
To print the list of keywords, use the below code.
Note: let's learn more about python keywords in next chapter.

Comments
Post a Comment