I know in R you can just type ?"function_name". How do you do this in python? Specifically, I am trying to find information about set_position
in the pyplot
library.
help(function)
should do the trick.
Demo:
def func():
"""
I am a function who doesn't do anything,
I just sit in your namespace and crowd it up.
If you call me expecting anything
I'll just return to you the singleton None
"""
pass
help(func)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With