eg = 'bajra bechna बाजरा बेचना'
fin=''
text = Text(eg)
for x in text.transliterate("en"):
fin = fin + ' ' + str(x)
print(fin)
output:
बाजरा बेचना
I am loosing the initial English text in the output. How can I get all of it in the output?