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

How does one remove the u' in u'somestring' in Python?

 print a  
 u'hello world'
share|improve this question
6  
I doubt very much that you get the u when you do print a. Are you sure that's what you've done? – Daniel Roseman Jan 31 '11 at 20:21
Uhh... print doesn't print the u. Please provide a more complete code example. – Mark Byers Jan 31 '11 at 20:21
1  
@Daniel no way this is real console output, but I get what he's saying. – Rafe Kettler Jan 31 '11 at 20:21
What version of python are you using and can you show us the assignment to a. It shouldn't be printing like that anyway so I think you may have done something wrong earlier.\ – Endophage Jan 31 '11 at 20:23
2  
You don't remove it. – David Heffernan Jan 31 '11 at 20:25
show 1 more comment

4 Answers

up vote 22 down vote accepted

Call str() on a unicode string to create a regular string. String literals with a u prepended e.g. u'string' are unicode strings.

Example:

>>> a = u'hello'
>>> a
u'hello'
>>> str(a)
'hello'
share|improve this answer
calling print on a unicode string shouldn't print the u anyway. He's done something else wrong or isn't posting actual output. – Endophage Jan 31 '11 at 20:25
2  
I wouldn't say "make it" though, as python strings are immutable. A new string is generated here. docs.python.org/tutorial/introduction.html#unicode-strings – Felix Dombek Jan 31 '11 at 20:25
@Felix you're right. My wording fail – Rafe Kettler Jan 31 '11 at 20:26
1  
if the string contains non-ascii chars will raise UnicodeEncodeError, use unicode.encode instead. – neurino Jan 31 '11 at 20:29

Encode your unicode string to convert to type str in the encoding you want to use:

>>> u'hello world'.encode('utf-8')
'hello world'

>>>> u'hellò world'.encode('utf-8')
'hell\xc3\xb2 world'

>>> u'hellò world'.encode('latin-1')
'hell\xf2 world'
share|improve this answer
>>> a = u"ユニコードって最高"
>>> print a
ユニコードって最高

I don't see a u. How did you run your code?

share|improve this answer
1  
The real question is how to turn unicode strings into regular strings. It doesn't really matter whether the console output is legit – Rafe Kettler Jan 31 '11 at 20:24

Although it has been years, for the sake of anyone who still have the same question -

An easy workaround would be to use "replace" - this does not change the encoding format, but just presents the output differently

If output = text:u '1/11 00123'; try the foll:

output.replace("text:u","").replace("'","")

This should remove the text:u and the single quotes.

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.