I did this operation:
definitions.objects.values_list('title', flat=True)
And it returns these results:
[u'accelerate', u'acute', u'bear', u'big'...]
You will realize that the results are all in unicode (u'). How do I remove them all so that I get the result:
['accelerate', 'acute', 'bear', 'big' ...]
Thanks in advance!