I wonder what is better to do:
d = {'a': 1, 'b': 2}
'a' in d
True
or:
d = {'a': 1, 'b': 2}
d.has_key('a')
True
|
I wonder what is better to do:
or:
|
||||
|
|
|
In fact |
|||||||||||||||
|
|
While the following observation is not always true, you'll notice that usually, in Python, the faster solution is more elegant and Pythonic; that's why |
|||||
|
|
Use |
|||||||||
|
|
|
|||||
|
|
There is one example where If you use Fix is obviously trivial:
|
|||
|
|