You want to create a virtual environment that uses python 3.9. Which command will create a new virtual environment with the appropriate version of python? code example
Example 1: python env
python3 -m venv tutorial-env
tutorial-env\Scripts\activate.bat (window)
source tutorial-env/bin/activate (linux)
Example 2: activate venv
venv\Scripts\activate.bat