Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 IPython 中运行命令
cd $cs<TAB>
但它不允许我扩展路径。
如何让 IPython 读取 shell 变量?
如果我正确理解您所说的“shell 变量”是什么意思。如果您的意思是在 shell 中设置的变量(“环境变量”):您可以使用 os.environ... 读取它们
import os cs = os.environ.get('cs') runstring = "cd %s" (cs) ...