I need to print values that have non ascii symbols. These values are unicode strings. So I have this list:
some_list = [u'Data', u'Svoris', u'Perdavimo laikas',
u'\u012evykio vietos adresas', u'Kvietimo prie\u017eastis']
I can print it with with non ascii symbols, but u
is still kept:
print 'hello %s' % (str(some_list)[1:-1].decode('unicode-escape'))
hello u'Data', u'Svoris', u'Perdavimo laikas', u'Įvykio vietos adresas', u'Kvietimo priežastis'
How can I hide u
too?