saving . . . saved ipython has been deleted. ipython has been hidden .
ipython
Title
Question
 Difference between the working of normal interpreter and ipython interpreter. 

Is there any diffidence?

Python Getting-started-with-ipython 10-11 min 40-50 sec 22-06-19, 11:06 a.m. Balasamy

Answers:

An ipython interpreter has certain nice-to-use features that provide more ease of use. It has syntax highlighting, file navigation/system commands that can be easily run inside the console, magic commands like %edit to access special features, tab completion etc.

All of these features make it easy and faster to use.
22-06-19, 11:14 a.m. ankitrj.iitb


The main difference is that IPython is IPython notebook. You can put all your work into a notebook like script, image files, etc. But with normal python interpreter, you can only make the script in a file and execute it.
22-06-19, 11:15 a.m. iakashchavan


Log-in to answer to this question.