Is it possible for LIMIT to return a QuerySet, not a list?

>>> User.objects.filter(gender='male')[::2] [<User: sdfsdf>, <User: Jack>, <User: Pavel>] 
  • so the QuerySet filter returns the same ... - m0nte-cr1st0
  • User.objects.filter(gender='male')[:2] - without a step will return the queryset - Alexander
  • @ m0nte-cr1st0, if you specify the step in the slice, then the queryset will be calculated - Alexander
  • And why do QuerySet ? - m0nte-cr1st0

0