How to turn on shell hints in python?

Question:

Is there something like hints in python’s shell? For example I type variable/class name then dot and press tab, and I have all possible attributes and methods. How can I turn this on if there is?

Asked By: Eighty

||

Answers:

The python interpreter itself does not have hints. What you want is the iPython package, which has this functionality (and much much more).

pip install ipython

and then

ipython

Answered By: Roland
Categories: questions Tags:
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.