+ 1
Why this code Not working ?
6 Answers
+ 8
python
it is __next__ now
+ 4
It's next(c), not c.next()
+ 2
ulisses thanksđ
+ 1
Another thing:
You called the generator 'i' and
you called a variable inside it also 'i'.
+ 1
Anna it's working thanks but i refer a book a Python complete reference book in that book they write c.next() but it's not working why?