What is a virtual environment used for?
- A Isolating a project's dependencies from other projects and the system Python
- B Running Python faster
- C Emulating another operating system
- D Encrypting source code
Answer
Isolating a project's dependencies from other projects and the system Python
Isolation prevents version conflicts between projects and keeps the system Python installation clean.





