Examples:
Modules:
has()
Profiling:
Links:
Versions:
Checks if the key is in the dict and not None.
>>> d = {'a' : 1 , 'b' : 2 , 'c' : 3} >>> has('a',d) True >>> has('x',d) False