How to print Python installation directory to the output?

后端 未结 3 801
粉色の甜心
粉色の甜心 2021-02-12 08:16

Let\'s say Python is installed in the location

C:\\TOOLS\\COMMON\\python\\python252


I want to print this location in the outpu

3条回答
  •  温柔的废话
    2021-02-12 09:02

    Maybe either of these will satisfy you:

    >>> import sys
    >>> print(sys.prefix)
    /usr
    >>> print(sys.path)
    ['', '/usr/lib/python25.zip', '/usr/lib/python2.5', '/usr/lib/python2.5/plat-linux2',
    '/usr/lib/python2.5/lib-tk', '/usr/lib/python2.5/lib-dynload', 
    '/usr/local/lib/python2.5/site-packages', '/usr/lib/python2.5/site-packages', 
    '/usr/lib/python2.5/site-packages/Numeric', '/usr/lib/python2.5/site-packages/gst-0.10',
    '/var/lib/python-support/python2.5', '/usr/lib/python2.5/site-packages/gtk-2.0', 
    '/var/lib/python-support/python2.5/gtk-2.0']
    

提交回复
热议问题