You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
439 B
Plaintext

# Get the documentation string for an python object from shell
# we use itertools.starmap as an example
python -c 'import inspect; import itertools; print inspect.getdoc(itertools.starmap)'
# Get the documentation string for an object from python
# we use itertools.starmap as an example
print inspect.getdoc(itertools.starmap)
# In a interactive python shell
help(itertools.starmap)
# In a interactive IPython shell
itertools.starmap?