We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

Running Python

Let's run some Python code! We'll pass a script's file path to the python3 command.

Assignment

  1. touch main.py
    
  2. print("greetings boots")
    
  3. python3 main.py
    

If the script printed greetings boots to the console, your local Python environment is working!

Run and submit the CLI tests from the root of your project.