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 Not
Notes is an instance of NoteBook
. To iterate over such an object, it needs an __iter__ method:
class NoteBook:
def __iter__(self):
return iter(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
.