What is the recommended idiom for checking whether a query returned any results? Example:
orgs = Organisation.objects.filter(name__iexact = \'Fjuk inc\')
You could also use this:
if(not(orgs)): #if orgs is empty else: #if orgs is not empty