TamilLanguage

This wiki is in the process of being archived due to lack of usage and the resources necessary to serve it — predominately to bots, crawlers, and LLM companies. Edits are discouraged.
Pages are preserved as they were at the time of archival. For current information, please visit python.org.
If a change to this archive is absolutely needed, requests can be made via the infrastructure@python.org mailing list.

Links to Python related information in Tamil

ISO 639-1 Code: ta

தமிழ்

Words for code snippet from masteranylanguage.com

   1 
   2 
   3 
   4 
   5 வாழைப்பழம = 'banana'
   6 பால் = 'milk'
   7 நீர் = 'water'
   8 சாதம = 'rice'
   9 காப்பி = 'coffee'
  10 மீன் = 'fish'
  11 இறைச்சி = 'meat'
  12 பழம = 'fruit'
  13 கோழி = 'chicken'
  14 தக்காளி = 'tomato'
  15 
  16 foods = {'வாழைப்பழம':வாழைப்பழம,
  17          'பால்':பால்,
  18          'நீர்':நீர்,
  19          'சாதம':சாதம,
  20          'காப்பி':காப்பி,
  21          'மீன்':மீன்,
  22          'இறைச்சி':இறைச்சி,
  23          'பழம':பழம,
  24          'கோழி':கோழி,
  25          'தக்காளி':தக்காளி}
  26 
  27 for food in foods:
  28     print('\nEnglish:  ' + foods[food])
  29     print('தமிழ்:  ' + food)

http://ta.wikipedia.org/wiki/பைத்தான் Wikipedia

http://www.tamilnation.org/digital/tic_03/16_rganesh.pdf Paper on Tamil version of Python (Pytham)

download Python related scripts(?)

Pycon India 2009 TDD - has section on reversing Tamil string (Unicode behaves differently than ASCII)

Ubuntu forum - some code for detecting Tamil Unicode string.

CategoryLanguage CategoryUnicode CategoryPyConIndia2009