Table of Contents
Python Keywords
Keywords are the special strings that are reserved by a programming language. These strings cannot be used as a user-defined variable names or other identifiers names.
Below is the python keywords.
and | def | exec | If | not |
assert | del | finally | import | or |
break | elif | for | in | pass |
class | else | from | is | |
continue | except | global | lambda | raise |
return | try | while | with | yield |
NOTE: All the python keywords are in lowercase.
0 Comments