Is there a way to tell whether, in python, you are iterating through a list or a generator?
for i in range(10):
print some_param # will identify as a list
for i in xrange(10):
print some_param # will identify as a generator
|
Is there a way to tell whether, in python, you are iterating through a list or a generator?
|
|||
|
In general, no. You can do unpleasant things like |
|||
|
|
for line in fileread the entire file into memory or just searched ahead for the next newline character. – Kevin Burke Aug 10 '11 at 1:39file.readlinedoes some buffering but certainly does not read the whole file. – Benjamin Peterson Aug 10 '11 at 2:32