I'm posting this question again, slightly different.
How to get help on methods in Python?
I use Jupyter Lab mostly.
I work mainly with numbers... but sometimes I need to manage strings as well... and I need to recall how to use some methods. So, I need to go online to the forums or search on my notebooks to see how I did this and that...
Is there a way to obtain a docstring with the list of builtin methods available for an object using 'help'? or '?'?
and,
Is there a way to get help on methods without creating an object for that? Like
x = 'x'
x.split?
Thanks