For finding the full path of the Python interpreter you can use sys.executable which contains the full path of the currently running Python interpreter. Below is the code that shows how to use the sys.executable and get the full path in Python.
import sys
print(sys.executable)