Hi,
How can I remove unicode character(u) from a list output?
Example:
[[u'r118', u'BB']]
[[u'r119', u'BB']]
I want the output to be without "u". Example:
[['r118', 'BB']]
[['r119', 'BB']]
Any help appreciated.
Thanks,
Sashi.
How can I remove unicode character(u) from a list output?
Example:
[[u'r118', u'BB']]
[[u'r119', u'BB']]
I want the output to be without "u". Example:
[['r118', 'BB']]
[['r119', 'BB']]
Any help appreciated.
Thanks,
Sashi.
Comment