Comment trouver où se trouve Python

>>> import os
>>> import sys
>>> os.path.dirname(sys.executable)
'C:\\Python25'
Uptight Unicorn