KEYWORDS in PYTHON
- Predefined or Reserved words are called keywords.
Note:They can't be used as variable name as their meaning is already reserved.
There are 33 Keywords in python 3.
If you want to see the list of keywords in python
Just go to IDLE
FILE->New->save as test.py
code:
import keyword
Comments
Post a Comment