List of keywords that you can't use as identifier name
Info:
While writing a Python code, you can NOT use Python keywords as identifier names.
Here are the keywords to avoid:
False , class , finally , is , return , None , continue , for , lambda , try , True , def , from , nonlocal , while , and , del , global , not , with , as , elif , if , or , yield , assert , else , import , pass , break , except , in , raise
Note
Python is a growing and evolving language. So it's keywords will keep increasing and changing.