Reading Documentation

Last updated: January 4, 2023

Internal

In Python, to get help on an object, you can use the builtin help():

help(object)

If you use IPython or Jupyter, you can aso use:

?object

Comments & questions