python get the path in cmd code example
Example: how to find where python is located
>>> import os
>>> import sys
>>> os.path.dirname(sys.executable)
'C:\\Python25'
>>> import os
>>> import sys
>>> os.path.dirname(sys.executable)
'C:\\Python25'