Have you ever wanted to quickly try some ideas popping up in your head using a Python Shell (REPL)? You might be hesitant to use a classic Python shell since it doesn’t support auto-completion or docstring as Jupyter Notebook does.
You also cannot fix the mistake in the code after hitting Enter.
What if you can turn your boring Python shell into a multi-functional shell like above?
That is when ptpython comes in handy.
Comments are closed.