I opened a Python 3 shell (is it called like that) typing python3 from a terminal.If I issue the commandhelp('print') everything works fine and I can read the documentation.
However if I open a Python 2.7 shell (python from a terminal) when I typehelp('print') I get the following message:
no documentation found for 'print'
How can I get to use the documentation in Python 2.7 as well?
This looks like a bug of Python 2 as something like help("dir") works properly. It probably does not work becauseprint is a special keyword, unlike Python 3. Stick to Python 3 or run the following command instead ofhelp("print"):