Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

2 Answers

up vote 1 down vote accepted

If you want to encode in utf8, you can simply do:

definitions_list = [definition.encode("utf8") for definition in definitions.objects.values_list('title', flat=True)]
share|improve this answer

You could call str on all the values (note that map is a bit lazy, list() added to immediately turn it back into an indexable object):

thingy = list(map(str, [u'accelerate', u'acute', u'bear', u'big']))

Or use a list comprehension:

[str(item) for item in [u'accelerate', u'acute', u'bear', u'big']]

In the end though, why would you require them to be str explicitly; added to a django template (like {{ value }}), the u's will disappear.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.