Book Image

IPython Notebook Essentials

By : Luiz Felipe Martins
Book Image

IPython Notebook Essentials

By: Luiz Felipe Martins

Overview of this book

Table of Contents (15 chapters)
IPython Notebook Essentials
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Getting help


There are a number of ways to get help:

  • To start interactive help, run the following command:

    help()
    
  • To get help with a function or object, run the following command:

    help(object)
    help(function)
    <object>?
    <function>?
    
  • For tab completion, start typing the name of the function/object/method and press Tab.

  • To get a tooltip, start typing the name of the function/object/method and press Shift + Tab.