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


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

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