#!/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 भारत का इतिहास काफी समृद्ध एवं विस्तृत है।
please tell me what i am doing is wrong ? HElp required ! thanks in advance
I don't know what you have to do with
word
but I would do it this way:Here's a template: