Comment on Retiring a Great Interview ProblemparentComments−eru15yIs mydict.items() also lazy?−kragen15yIn Python 3 yes, in Python 2 no. In Python 2 you'd say mydict.iteritems() if you were concerned about it.
Comments
Is mydict.items() also lazy?
In Python 3 yes, in Python 2 no. In Python 2 you'd say mydict.iteritems() if you were concerned about it.