How do I combine 2 letters such as क and ख ⟶ क्ख?
What I tried:
'
्'.join(['क','ख'])-> 'क्ख'print("क"+"\b"+"ख")-> 'ख' or 'क\x08ख'print('क'+'्'+'ख')-> क्खprint('क्ख'.replace('्',""))-> कख
I got the answer (soln 1 worked, just had to add # -*- coding: utf-8 -*- to the top of the file)