How does one remove the u' in u'somestring' in Python?
print a
u'hello world'
|
Call Example:
|
|||||||||||||
|
|
Encode your unicode string to convert to type str in the encoding you want to use:
|
|||
|
|
I don't see a |
|||||
|
|
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. |
|||
|
|
uwhen you doprint a. Are you sure that's what you've done? – Daniel Roseman Jan 31 '11 at 20:21u. Please provide a more complete code example. – Mark Byers Jan 31 '11 at 20:21