Skip to content
Advertisement

How to turn on shell hints in python? [closed]

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?

Advertisement

Answer

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

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement