Memos

Python Library

Built-in Functions

callable(object)

Note that classed are callable(calling a class returns a new instance); class instances are callable if they have a __call__() method. classmethod VS staticmethod

cmp(x, y)

return negative if x < y, 0 if x = y, positive if x > y

To be continued…