I'm a student to learn python scrapy(crawler).
I want to convert unicode string to str in python. but this unicode string is not common string. this unicode is unicode format. please see below code.
# python 2.7
...
print(type(name[0]))
print(name[0])
print(type(keyword_name_temp))
print(keyword_name_temp)
...
I can see console like below, when run upper script.
$ <type 'unicode'>
$ 서용교 ## this words is korean characters
$ <type 'unicode'>
$ u'\\uc9c0\\ubc29\\uc790\\uce58\\ub2e8\\uccb4'
I want see "keyword_name_temp" as korean. but I don't know how to do...
I got the name list and keyword_name_temp from html code with http request.
name list fundamentally was String format.
keyword_name_temp fundamentally was unicode format.
please anybody help me !