1.首先,确保你已经安装了IPython。如果你使用的是Python 3,那么IPython应该是你的默认交互式shell。 2.导入`get_ipython`模块: ```python from IPython import get_ipython ``` 3.获取`InteractiveShell`对象: ```python shell = get_ipython() ``` 4.使用`run_line_magic()`方法运行代码: ```python she...