I have this string
a = "ID\u65e0\u6548 99999"
>>> print u"ID\u65e0\u6548 99999"
ID无效 99999
>>> print unicode("ID\u65e0\u6548 99999")
ID\u65e0\u6548 99999
Now I want to print out as first output ID无效 99999
without using u
prefix.
Is there a solution? Thanks!!
Since I'm using Python2.7 and I need to use this in my project, there is no possibility to use python3.