I have not been able to find an answer to this around. I am wondering if there is anyway to call a list of available methods from right inside python.
for example if I had this list
list1 = ['one',2,3,4,5]
I can call list1.append(6)
Obviously if I was to download a third party program you can hit tab after the . and it will show a drop down of all methods. But I am wondering if there is something inside python to do something similar so it gives me a list of all methods like list.help or something and it would show.
.append .pop .remove etc
Sorry this is a very basic question I was just thinking since I have a hard time remembering all the methods for each type it would save me a little time from looking it up on python.org.