The Python Project Folder Setup
Create a folder:
mkdir Python_Dojo
Go into the folder:
cd Python_Dojo
Create a virtual environment inside your new folder. The venv command also creates a folder with the same name
Python_Dojo % python3 -m venv venv
Initialize Git
Create a ...
shanirivers.hashnode.dev2 min read