Python 3 for Windows Administrators (early access)
Installing Python on Windows • 17min
0 / 3 lessons complete
Section Overview
Free lesson
Text | 1 min
Downloading and Installing Python on Windows
Free lesson
Text | 8 min
Installing and configuring VS Code for Python
Free lesson
Text | 8 min
Python Basics • 27min
0 / 6 lessons complete
Executing Python Code
Free lesson
Text | 3 min
Python 3 Syntax
Free lesson
Text | 5 min
Help! Python Keywords
Free lesson
Text | 4 min
Printing to the console!
Text | 6 min
Python Operators
Text | 4 min
Section Review
Quiz | 5 min
Python Variables • 5min
0 / 1 lessons complete

Saving Progress...
Python keywords are reserved words you cannot use when you are creating functions or variables. Keywords can potentially change with each version of Python, but you check your existing keywords using the help command:
help("keywords")
Try it in the interactive Python console below:
Here is a list of the Python keywords as of Python 3.10:
False | class | from | or |
None | continue | global | pass |
True | def | if | raise |
and | del | import | return |
as | elif | in | try |
assert | else | is | while |
async | except | lambda | with |
await | finally | nonlocal | yield |
break | for | not |
You can learn more about each keyword by using the help command like so:
help("async")

You can press enter to continue to the next line, and press Q to return to your interactive console.
It's important to not use these keywords when you're writing Python code. For example, you don't want to create a variable or function called "continue" because this is a Python keyword.

Saving Progress...