python set environment variable windows code example

Example 1: python path to python executable

>>> import sys
>>> print(sys.executable)
C:\path\to\python.exe

Example 2: python set windows environment variable

os.environ['API_PASSWORD'] = 'secret'

Example 3: add python to path

# On linux
$ which python; # Get Path of the executable
$ export PATH=$PATH:{PATH_PYTHON}; # but it isn't continue
# ----------------------
$ which python; # Get Path of the executable
export PATH=$PATH:{PATH_PYTHON}; # add in your ~/.bashrc or your ~/.zshrc