how to find python path in command prompt code example
Example 1: find python path windows
>>> import os
>>> import sys
>>> os.path.dirname(sys.executable)
'C:\\Python25'
Example 2: find python path through command line
where python
>>> import os
>>> import sys
>>> os.path.dirname(sys.executable)
'C:\\Python25'
where python