python how to create virtual environment variables code example
Example 1: how to create a python venv
python3 -m venv tutorial-env
Example 2: python create environment variable
import os
os.environ['variable_name'] = 'variable_value'
python3 -m venv tutorial-env
import os
os.environ['variable_name'] = 'variable_value'