1. <i id='036W8'><tr id='036W8'><dt id='036W8'><q id='036W8'><span id='036W8'><b id='036W8'><form id='036W8'><ins id='036W8'></ins><ul id='036W8'></ul><sub id='036W8'></sub></form><legend id='036W8'></legend><bdo id='036W8'><pre id='036W8'><center id='036W8'></center></pre></bdo></b><th id='036W8'></th></span></q></dt></tr></i><div id='036W8'><tfoot id='036W8'></tfoot><dl id='036W8'><fieldset id='036W8'></fieldset></dl></div>

        <bdo id='036W8'></bdo><ul id='036W8'></ul>

      1. <small id='036W8'></small><noframes id='036W8'>

        <tfoot id='036W8'></tfoot>
      2. <legend id='036W8'><style id='036W8'><dir id='036W8'><q id='036W8'></q></dir></style></legend>

        如何在 Python 中设置环境变量?

        How to set environment variables in Python?(如何在 Python 中设置环境变量?)

          1. <tfoot id='c411f'></tfoot>
          2. <legend id='c411f'><style id='c411f'><dir id='c411f'><q id='c411f'></q></dir></style></legend>
            • <small id='c411f'></small><noframes id='c411f'>

                <bdo id='c411f'></bdo><ul id='c411f'></ul>
                <i id='c411f'><tr id='c411f'><dt id='c411f'><q id='c411f'><span id='c411f'><b id='c411f'><form id='c411f'><ins id='c411f'></ins><ul id='c411f'></ul><sub id='c411f'></sub></form><legend id='c411f'></legend><bdo id='c411f'><pre id='c411f'><center id='c411f'></center></pre></bdo></b><th id='c411f'></th></span></q></dt></tr></i><div id='c411f'><tfoot id='c411f'></tfoot><dl id='c411f'><fieldset id='c411f'></fieldset></dl></div>
                  <tbody id='c411f'></tbody>

                  本文介绍了如何在 Python 中设置环境变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我需要在 Python 脚本中设置一些环境变量,并且我希望从 Python 调用的所有其他脚本都能看到环境变量的设置.

                  I need to set some environment variables in the Python script and I want all the other scripts that are called from Python to see the environment variables' set.

                  如果我这样做,

                  os.environ["DEBUSSY"] = 1
                  

                  它抱怨说 1 必须是一个字符串.

                  it complains saying that 1 has to be a string.

                  我还想知道一旦我设置了它,如何在 Python 中读取环境变量(在脚本的后半部分).

                  I also want to know how to read the environment variables in Python (in the latter part of the script) once I set it.

                  推荐答案

                  环境变量必须是字符串,所以使用

                  Environment variables must be strings, so use

                  os.environ["DEBUSSY"] = "1"
                  

                  将变量DEBUSSY设置为字符串1.

                  以后要访问这个变量,只需使用:

                  To access this variable later, simply use:

                  print(os.environ["DEBUSSY"])
                  

                  子进程会自动继承父进程的环境变量 -- 无需您进行任何特殊操作.

                  Child processes automatically inherit the environment variables of the parent process -- no special action on your part is required.

                  这篇关于如何在 Python 中设置环境变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  env: python: No such file or directory(env: python: 没有这样的文件或目录)
                  How to evaluate environment variables into a string in Python?(如何在 Python 中将环境变量评估为字符串?)
                  Python - temporarily modify the current process#39;s environment(Python - 临时修改当前进程的环境)
                  Change current process environment#39;s LD_LIBRARY_PATH(更改当前进程环境的 LD_LIBRARY_PATH)
                  Reading and writing environment variables in Python?(在 Python 中读写环境变量?)
                  When to use sys.path.append and when modifying %PYTHONPATH% is enough(何时使用 sys.path.append 以及何时修改 %PYTHONPATH% 就足够了)

                    <bdo id='Lnb9W'></bdo><ul id='Lnb9W'></ul>
                    <i id='Lnb9W'><tr id='Lnb9W'><dt id='Lnb9W'><q id='Lnb9W'><span id='Lnb9W'><b id='Lnb9W'><form id='Lnb9W'><ins id='Lnb9W'></ins><ul id='Lnb9W'></ul><sub id='Lnb9W'></sub></form><legend id='Lnb9W'></legend><bdo id='Lnb9W'><pre id='Lnb9W'><center id='Lnb9W'></center></pre></bdo></b><th id='Lnb9W'></th></span></q></dt></tr></i><div id='Lnb9W'><tfoot id='Lnb9W'></tfoot><dl id='Lnb9W'><fieldset id='Lnb9W'></fieldset></dl></div>
                      <tbody id='Lnb9W'></tbody>
                      1. <tfoot id='Lnb9W'></tfoot><legend id='Lnb9W'><style id='Lnb9W'><dir id='Lnb9W'><q id='Lnb9W'></q></dir></style></legend>

                          1. <small id='Lnb9W'></small><noframes id='Lnb9W'>