Create a Project
Steps
- Create a folder called
my_projectand create three subfolders:data,scripts, andresults. - Navigate into the
scriptsfolder and create an empty Python script calledanalyze.py. - Return to the project root and list the directory contents recursively.
- 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
pwdmkdir my_project
cd my_project
mkdir data, scripts, results
cd scripts
New-Item analyze.py -ItemType File
cd ..
Get-ChildItem -Recurse
Get-Location