Please drag the missing script into the relevant blanks, to define a virtual environment in the context of Python.
A virtual environment is an isolated working copy of Python which allows you to work on a specific project without [blank_start]affecting[blank_end] other projects.
Answer
affecting
effecting
changing
deleting
Question 2
Question
The Python virtual environment gives the advantage that there are multiple copies of Python available for several projects.
Answer
True
False
Question 3
Question
To create a virtual environment, what do you install ([blank_start]virtualenv[blank_end]), where ([blank_start]on your project folder[blank_end]) and then what do you do ([blank_start]activate your virtual environment[blank_end]).
Answer
virtualenv
on your project folder
activate your virtual environment
delete your virtual environment
pip install
Question 4
Question
What does the command <virtualenv venv> do?
Answer
It installs the virtual environment
It activates the venv of the virtual environment
It creates the virtual environment in the folder where it is entered
It creates the virtual environment in all project folders