Skip to content Skip to sidebar Skip to footer

Python Iteration Over Non-sequence

I have this piece of code which creates a note and adds to the notebook. When I run this I get a Iteration over non-sequence error. import datetime class Note: def __init__(sel

Solution 1:

You are trying to iterate over the object itself, which is returning the error. You want to iterate over the list inside the object, in this case Notes.notes (which is somewhat confusing naming, you may want to distinguish the internal list by using another name for the instance of the notebook object).

for note in Notes.notes:
    print(note.memo)

Solution 2:

Notes is an instance of NoteBook. To iterate over such an object, it needs an __iter__ method:

classNoteBook:

    def__iter__(self):
        returniter(self.notes)

PS. It is a PEP8 recommendation/convention in Python to use lowercase variable names for instances of classes, and CamelCase for class names. Following this convention will help you instantly recognize your class instances from your classes.

If you wish to follow this convention (and endear yourself to others who like this convention), change Notes to notes.

Solution 3:

If you wanted to actually iterate Notes itself, you could also add a custom __iter__ method to it that returns the .notes property.

classNotebook:

    def__iter__(self):
        returniter(self.notes)

    ...

Solution 4:

The problem is in the line for note in Notes: since Notes is an object not a list. I believe you want for note in Notes.notes:

also as unutbu pointed out, you can overload the __iter__ operator which will allow your current loop to work. It depends how you want this to outwardly appear. Personally I would overload __iter__

Post a Comment for "Python Iteration Over Non-sequence"