If you want to uninstall your python,input:
sudo apt-get remove python
if you want to install python3:
sudo apt-get install python3
but it just installs the python3.4,so if you want to update it to3.5:
sudo apt-get update && sudo apt-get install python3.5
if you want to check your python version:
python -V
python3 -V
if you want to check the path installed:
which python
which python3