How to Enable Intellisense in Jupyter Notebook
At the top of your notebook add this line
%config IPCompleter.greedy=True
- To see methods of the object, type the object name followed by a '.' and press TAB button.
- To see the parameters of a method, type the function followed by '()'. Place the cursor in between the parenthesis and press SHIFT+TAB
Comments
Post a Comment