7

我有两个 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']
ㄱ가가ㄱ가

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

4

1 回答 1

7

如果要连接两个字符串,请使用+

>>> '가' + 'ㄱ'
'\xea\xb0\x80\xe3\x84\xb1'
>>> u'가' + u'ㄱ'
u'\uac00\u3131'
>>> print u'가' + u'ㄱ'
가ㄱ

这意味着您可以使用

output1 + output2
于 2012-11-05T14:50:30.330 回答