Links to Python related information in Tamil
ISO 639-1 Code: ta
தமிழ்
Words for code snippet from masteranylanguage.com
1 # -*- coding: utf-8 -*-
2 # python 3.0 or 3.1
3
4 # Tamil identifiers (variables)
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.