1

So I was browsing through YouTube and found that it's possible to show all possible methods. For instance,

enter image description here

I read you could use TAB or Shift+Tab but I still cannot get it to work. I have the latest Python downloaded. How can I make this option available?

ernest_k
  • 44,416
  • 5
  • 53
  • 99
NimbleTortoise
  • 355
  • 5
  • 13

1 Answers1

4

You have to first initialize te object. Ex: execute a=[] in a cell, then type a.TAB and jupyter will show you all possible methods for a list. (similar for all other objects)

Example for a list:

enter image description here

Example for a Dataframe:

enter image description here

anky
  • 74,114
  • 11
  • 41
  • 70