What is the difference between Python and IPython?

前端 未结 7 1664
傲寒
傲寒 2020-12-07 08:18

What exactly is the difference between Python and IPython?

If I write code in Python, will it run in IPython as is or does it need to be modified?

I know IPy

7条回答
  •  [愿得一人]
    2020-12-07 08:28

    Compared to Python, IPython (created by Fernando Perez in 2001) can do every thing what python can do. Ipython provides even extra features like tab-completion, testing, debugging, system calls and many other features. You can think IPython as a powerful interface to the Python language.

    You can install Ipython using pip - pip install ipython

    You can run Ipython by typing ipython in your terminal window.

提交回复
热议问题