如何连接多个unicode字符串?

时间:2012-11-05 13:48:20

标签: python unicode python-2.x

我有两个unicode字符串'가''ㄱ',我想连接它们以获取"가ㄱ"

这是我的代码:

output1 = unicodeQueue(self.queue) # first unicode result
output2 = unicodeQueue(self.bufferQueue) # second unicode result
sequence = [output1, output2]
print sequence
output = ''.join(sequence)
return output

这是我得到的输出:

[u'\uac00', u'\u3131']
ㄱ가가ㄱ가

我不知道为什么它没有产生正确的结果,有人可以帮我这个吗?

1 个答案:

答案 0 :(得分:6)

如果要使用+

连接两个字符串
>>> '가' + 'ㄱ'
'\xea\xb0\x80\xe3\x84\xb1'
>>> u'가' + u'ㄱ'
u'\uac00\u3131'
>>> print u'가' + u'ㄱ'
가ㄱ

这意味着您可以使用

output1 + output2