add python to windows code example

Example 1: 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

Example 2: add python to path windows 10

Either manually change it by doing the steps for the answer by skilliboi.

Or you can reinstall python and when you do that, make sure to tick the box that says:
Add python to PATH (or something like that)