Home
Using Tamil unicode strings efficiently in python
Output:
Normally, how python reads the unicode strings, this seems like python did not recoganize properly and let we see how tamilstring helps to handle this
Output:
output shows that using tamilstring helps to handle tamilstring unicodes more effectively.
Alternatives,
Advantages why you have to choose tamilstring, it gives more feture comparing to alternatives, it will handle sanskrit better
from tamil.utf8 import get_letters as op_get_letters
from tamilstring import get_letters as ta_get_letters
print(op_get_letters("க்ஷ்"))
print(ta_get_letters("க்ஷ்"))
Output:
print(op_get_letters("ஶ்ரீ"))
print(ta_get_letters("ஶ்ரீ"))
print(op_get_letters("ஸ்ரீ"))
print(ta_get_letters("ஸ்ரீ"))
Output:
when you notice that this both 'ஸ்ரீ','ஶ்ரீ' ( this looking both differnet from mobile ) are used to refer same letter
soon cython implemetation
DisAdvantages
time consuming
To explore what more tamilstring provides