I have followed instructions in examples like this, and this.
I have this line in my ~/.bashrc file
export python="/usr/local/bin/python3.6"
This lines in my ~/.bash_aliases file
alias python='/usr/local/bin/python3.6'
This is my PATH variable
/Library/Frameworks/Python.framework/Versions/3.6/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/Wireshark.app/Contents/MacOS
And I still have the following python version and path
User$ which python
/usr/bin/python
User$ python --version
Python 2.7.10
I have also already tried exiting the terminal and reopening
Here is what is within the directories /usr/local/bin/python3.6* and /usr/bin/python*
User$ /usr/local/bin/python3.6
python3.6 python3.6-config python3.6m-config
python3.6-32 python3.6m
User$ /usr/bin/python
python python2.6-config pythonw
python-config python2.7 pythonw2.6
python2.6 python2.7-config pythonw2.7
Thank-you