To determine where on your system an executable in your path exists, use the which command:
$ which python
$
If there is no response, that executable does not exist in your path. The system will simply return you a new prompt without an error message. If the executable does exist on your path, ...