[Answered ]-Django read data from list of QuerySets

1👍

You can work with:

[q['number'] for qs in qs_list for q in qs]

where qs_list is the list of QuerySets.

That being said, often a list of QuerySets means you are doing something inefficient, since you will here make a query per QuerySet in the list. Often you can derive the values all in the same query.

Leave a comment