Examples:
Modules:
get()
Profiling:
Links:
Versions:
Returns dict[key] if this exists else default.
>>> d = {'a' : 1 , 'b' : 2 , 'c' : 3} >>> get('a',d,5) 1 >>> get('x',d,5) 5