Answers for "how to find python folder in windows"

15

which folder python os

import os
cwd = os.getcwd()
Posted by: Guest on March-09-2020
3

find python path windows

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

Code answers related to "how to find python folder in windows"

Python Answers by Framework

Browse Popular Code Answers by Language