Could you please look at the code below:
def search(self, filter):
return [note for note in self.notes if note.match(filter)]
I thought for and if statements require a colon. Above, there is no colon after for and if. And this kind of if and for usage does not look like what I read in text books. What I generally read is like these:
for note in self.notes:
some code
or
if note.match(filter):
some code
Would you please explain this kind of if and for usage, it doesn't include colons and it is a single line statement. Anf if clause is in the end of the statement. Really confusing.