Is there any advantage to using keys() function?
for word in dictionary.keys():
print word
vs
for word in dictionary:
print word
|
Is there any advantage to using keys() function?
vs
|
|||
|
|
|
Yes, in Python 2.x iterating directly over the dictionary saves some memory, as the keys list isn't duplicated. You could also use In Python 3.x, So, in conclusion: use |
|||||
|