You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the great features of Jupyter is the live object inspection to obtain information about functions and methods.
To see what functions / methods are available through the objects interface you can:
importnumpyasnpnp.<tab>#Use the tab key in place of <tab>
To obtain the function signature or the parameter definitions you can:
importnumpyasnpnp.array(<shift>+<tab>#Replace <shift>+<tab> with the key combination after the open bracket
To get the full docstring:
importnumpyasnpnp.array(<shift>+<tab>+<tab>#Replace <shift>+<tab> plust another <tab> with the key combination after the open bracket to display more of the docstring
Another way to access this information is using the ? character in Jupyter
importnumpyasnpnp.array?
then execute the statement to obtain an information window at the bottom of your browser.
The text was updated successfully, but these errors were encountered:
One of the great features of Jupyter is the live object inspection to obtain information about functions and methods.
To see what functions / methods are available through the objects interface you can:
To obtain the function
signature
or the parameter definitions you can:To get the full docstring:
Another way to access this information is using the
?
character in Jupyterthen execute the statement to obtain an information window at the bottom of your browser.
The text was updated successfully, but these errors were encountered: