concatenation of two unicode srings?
问题 #!/usr/bin/python # -*- coding: utf-8 -*- import re separators = [u"।", u",", u"."] dat=open(r"C:\Users\User\Desktop\text4.txt",'r').read() text=dat.decode("utf-8") wros=text.split() out="" import string space=" " counter=0; for word in wros: out=u" ".join(word) writ=open("C:\\Users\\User\\Desktop\\text5.txt",'w') writ.write(out.encode('utf-8')) writ.close() text4.txt contains भारत का इतिहास काफी समृद्ध एवं विस्तृत है। text5.txt outputs as ह ै । desired output is भारत का इतिहास काफी समृद्ध