.py 文件和 .ipy 文件有什么区别?
What is the difference between a .py file and a .ipy file?
我试过用两种方式保存(和运行)一个脚本,运行它同时使用ipython
和python
,但我没有看到任何差异。这些文件扩展名是多余的吗?
编辑:the difference between python and ipython
.ipy
表示这是一个 IPython 脚本。 IPython 脚本和普通 Python 脚本之间的唯一区别是 IPython 脚本可以使用 IPython 魔法,例如%timeit
和 运行 系统命令为 !echo Hi
。
我试过用两种方式保存(和运行)一个脚本,运行它同时使用ipython
和python
,但我没有看到任何差异。这些文件扩展名是多余的吗?
编辑:the difference between python and ipython
.ipy
表示这是一个 IPython 脚本。 IPython 脚本和普通 Python 脚本之间的唯一区别是 IPython 脚本可以使用 IPython 魔法,例如%timeit
和 运行 系统命令为 !echo Hi
。