Tagged Questions

1
vote
3answers
178 views

Usage of for and if in Python

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 ...