I have a Django Queryset object that looks like this (it is a derived queryset, not a queryset for a Model):
I don't think you can do that. But if you use aggregate then you will be able to get the sum of A, B, C like this:
A
B
C
>> result = YourModel.objects.aggregate(A=Sum('A'), B=Sum('B'), C=Sum('C')) >> print(result)