You need to check which symlinks are in place. The Python binaries are located in the directory /usr/bin (check with which pythonX.Y). The python3 symlink points to the python3.5 binary.
As mentioned in the comments: if you don't want to type python3.7 every time you shouldn't change the symlink. Changing the Python version might brake system stuff in unexpected ways. You should rather create an alias in your shell. In Bash you would add something like alias python=python3.7 into ~/.bashrc.
You need to check which symlinks are in place. The Python binaries are located in the directory
/usr/bin
(check withwhich pythonX.Y
). Thepython3
symlink points to thepython3.5
binary.As mentioned in the comments: if you don't want to type
python3.7
every time you shouldn't change the symlink. Changing the Python version might brake system stuff in unexpected ways. You should rather create an alias in your shell. In Bash you would add something likealias python=python3.7
into~/.bashrc
.