The Python console adds a new function, help, which can be used to get information about a function or object.
For a function, help prints its signature (arguments) and its docstring, if the function has one.
>>> help(print)
Help on built-in function print in module builtins:
print(.....