Create a Project

🧪 Scenario

You’re starting a Python data analysis project and want to organize your files before writing code.

Steps

  1. Create a folder called my_project and create three subfolders: data, scripts, and results.
  2. Navigate into the scripts folder and create an empty Python script called analyze.py.
  3. Return to the project root and list the directory contents recursively.
  4. Check your current working directory to confirm you’re in the right place.
mkdir my_project
cd my_project
mkdir data scripts results

cd scripts
touch analyze.py

cd ..
ls -R

pwd
mkdir my_project
cd my_project
mkdir data, scripts, results

cd scripts
New-Item analyze.py -ItemType File

cd ..
Get-ChildItem -Recurse

Get-Location