Tagged Questions
5
votes
5answers
5k views
VB.NET If Statement and the Colon
Here is an interesting piece of code that my fellow team members were just having a slightly heated discussion about...
Dim fred As Integer
If True Then fred = 5 : fred = 3 : fred = 6 Else fred ...
1
vote
3answers
175 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 ...