Language/Python
[Python] __iter__ method of class at add operator with list...
yhcting
2017. 5. 19. 20:32
class L(object):
def __init__(self, lst):
self.l = lst
def __iter__(self):
print('iter..')
for l in self.l:
yield l
def __str__(self):
return ' '.join(self.l)
l1 = L(['1', '2', '3'])
l2 = []
ll2+= l1
print(' '.join(l2))
$ ./a.py
iter..
1 2 3