Newbie here. I noticed that the >>>
that usually precedes the colon in the Python Console has been replaced by In[#]
, in which #
increments with each command.
I can still run code, but would like to know why this changed, whether it matters, what they mean, etc.
Asked
Active
Viewed 96 times
1

bad_coder
- 11,289
- 20
- 44
- 72

user14710828
- 11
- 3
-
3That is an IPython repl, instead of the repl that comes with the python interpreter – juanpa.arrivillaga Feb 10 '21 at 18:24
-
1[What is the difference between Python and IPython?](https://stackoverflow.com/questions/12370457/what-is-the-difference-between-python-and-ipython) this is not a duplicate but should answer all your questions. – mx0 Feb 10 '21 at 18:26
-
Btw can be disabled in PyCharm **Settings | Build, Execution, Deployment | Console | Use IPython if available** or by uninstalling IPython if you want so. – Pavel Karateev Feb 12 '21 at 09:24