Reputation: 373
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