For example, c++ have cplusplus.com/reference which contain all of c++ standard library complete with definitions and more importantly examples, so I was wondering if there is such a website for python. I know that python is self documented, like i could use
help(object)
object.__doc__
dir(object)
I know of
But it doesn't have examples of every method. It would be nice if there was such a website, because when I am learning a new python library I find myself just testing the methods to see if it does what I want, and it makes my programming really slow. But this maybe because I have only have 2 years of programming under my belt. So my question is, is there such a website and is there a better way to learning a new library in python? Because when learning a new c++ library, all I need to do is follow by example which makes learning a new c++ library really easy.