🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Exercises.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.

Project 13: Job Board Listing

Python Challenge
Step 1 of 3
Project

Virtual Environments

Add a comment: python -m venv .venv creates an isolated environment for this project's dependencies, so installing packages here never conflicts with another project's (or the system's) Python. Activating it before installing anything is the single most-skipped, most-important habit in Python project setup.

🎯 Your Task

Please add the exact code shown in the light gray box below to your editor.Do not delete your previous code, just insert these new lines in the correct place!

# python -m venv .venv creates an isolated environment for this project's
# dependencies — installing packages here never conflicts with another project's
# (or the system's) Python. Activate it before installing anything.

jobs = [
    {"title": "Front-End Engineer", "remote": True},
    {"title": "Product Designer", "remote": False}
]

print(len(jobs))