python -m venv .venvCreates a virtual environment in `.venv`. The Python docs recommend `venv` for isolated project environments, and `.venv` is a common convention. On Python, `venv` creates an isolated environment based on the interpreter you invoke.