Convertir la chaîne en Unicode Python 3
from numpy import unicode
t1 = "abc"
t2 = unicode(t1)
CompSciGeek
from numpy import unicode
t1 = "abc"
t2 = unicode(t1)