what is the use of Q in django code example
Example: q django
from django.db.models import Q
Q(question__startswith='Who') | Q(question__startswith='What')
from django.db.models import Q
Q(question__startswith='Who') | Q(question__startswith='What')