On Wed, Jul 26, 2017 at 10:03:59PM -0400, C W wrote:
> Thank you very much, all!
> 
> One other question: how do you look up a method?

Any of these will work:

help(list.sort)

help([].sort)

alist = [1, 2, 3, 99]
help(alist.sort)




-- 
Steve
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor

Reply via email to