Chris C
Chris C

Reputation: 373

Python Console Prompt shows In[] Out[] Instead of >>> in PyCharm

I'm assisting a Intro to Python course and one of the students has a command prompt that looks like:

In[0]: 1 + 2
Out[0]: 3

Instead of the usual:

>>> 1 + 2
3

How do we get her back to the usual ">>>" prompt? She is running Python 3.6 on Windows using PyCharm.

Upvotes: 6

Views: 3249

Answers (1)

Stephen Rauch
Stephen Rauch

Reputation: 49812

That is IPython Mode. You can disable it in settings:

enter image description here

Upvotes: 8

Related Questions