4 如何在IPython中将变量传递给魔术“运行”函数 我想做以下事情: In[1]: name = 'long_name_to_type_every_now_and_then.py' In[2]: %run name 但这实际上试图运行'name.py',这不是我想要做的。 是否有将变量转换为字符串的一般方法? 类似于以下内容: In[3]: %run %name% 81 python ipython ipython-magic