What is the difference between Python and IPython?

前端 未结 7 1686
傲寒
傲寒 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:44

    Even after viewing this thread, I had thought that ipython was a synonym for the python shell, in other words that typing python at the command line put one into ipython mode.

    It is in fact, as referenced above, a very cool interactive shell (command line program) that can be installed from iPython.org or simply by running

    pip install ipython
    

    or the more extensive:

    pip install ipython[notebook]
    

    from the command line.

提交回复
热议问题