Control Flow Lab Setup

Setup

Open your Terminal application and navigate to your ~/code/ga/labs directory:

cd ~/code/ga/labs

Make a new repository on GitHub named python-control-flow-lab.

Clone a copy of your remote repo locally by using the git clone command:

git clone https://github.com/<your-username>/python-control-flow-lab.git

📚 Note: In the link above, where it says <your-username>, you should see the username from your GitHub account.

Next, cd into your new cloned directory, python-control-flow-lab:

cd python-control-flow-lab

Create a file called exercises.py for your work.

touch exercises.py

Open the project’s folder in your code editor:

code .