Answers for "python location command"

7

how to find where python is located

>>> import os
>>> import sys
>>> os.path.dirname(sys.executable)
'C:\Python25'
Posted by: Guest on May-28-2020
0

location of python in cmd

python -c "import os, sys; print(os.path.dirname(sys.executable))"
Posted by: Guest on July-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language