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 的新手,我想知道如何将执行结果分配给变量的别名。
假设我正在使用标准别名:
('ls', 'ls -F --color')
现在我想使用此别名创建具有当前目录内容的变量:
content = <ls>
但我不知道如何表示赋值的右手边是别名,应该被执行。
提前致谢。
ls在 IPython 中是特殊情况,您可以foo =!ls在 cwd 中执行并拥有文件列表。
ls
foo =!ls