If I define the variable
x = 'Ááa Éée'
then the output of
print x
is
Ááa Éée
But I have an unicode object
x = u'Ááa Éée'
and I need the same output as before. To do this, I tried converting it to a str with
str(u'Ááa Éée')
but it didn't work.
How can I do this? (I'm only interested exit.)