--- title: Python Keywords --- ## Python Keywords Python has a list of keywords that cannot be used as identifiers (variable names). Trying to use any of these keywords as variables will create a Syntax Error and your Python script will not be run: >>> False = "Hello campers!" File "" SyntaxError: can't assign to keyword >>> break = "Hello campers!" File "", line 1 break = "Hello campers!" ^ SyntaxError: invalid syntax #### List of Keywords Keyword | - | - | - | - --- | --- | --- | --- | --- `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`