Differences between revisions 7 and 8
Revision 7 as of 2009-10-24 03:45:12
Size: 1681
Editor: CarlTrachte
Comment: working on code snippet
Revision 8 as of 2009-10-24 04:00:42
Size: 2615
Editor: CarlTrachte
Comment: added code snippet
Deletions are marked like this. Additions are marked like this.
Line 40: Line 40:
{{{#!python
# -*- coding: utf-8 -*-
# python 3.0 or 3.1

# Tamil identifiers (variables)
வாழைப்பழம = 'banana'
பால் = 'milk'
நீர் = 'water'
சாதம = 'rice'
காப்பி = 'coffee'
மீன் = 'fish'
இறைச்சி = 'meat'
பழம = 'fruit'
கோழி = 'chicken'
தக்காளி = 'tomato'

foods = {'வாழைப்பழம':வாழைப்பழம,
         'பால்':பால்,
         'நீர்':நீர்,
         'சாதம':சாதம,
         'காப்பி':காப்பி,
         'மீன்':மீன்,
         'இறைச்சி':இறைச்சி,
         'பழம':பழம,
         'கோழி':கோழி,
         'தக்காளி':தக்காளி}

for food in foods:
    print('\nEnglish: ' + foods[food])
    print('Tamil: ' + food
}}}

Links to Python related information in Tamil

ISO 639-1 Code: ta

There are some groundrules, some laid down by the site admins, some my suggestions:

1) Pages must be named in ASCII and English (PolishLanguage)

2) Pages must have an explanation in English at the top (Links to Python information in <language X>)

3) (my suggestion) We probably want to limit invites to edit the pages to people we know well, or Pythonistas with a track record. Hopefully this is inclusive enough without opening the site up to a spam flood and vandalismfest.

4) No anonymous changes.

Where these pages really need help:

1) check links, remove broken ones.

2) add new links that are quality Python information and active.

3) some care for languages that have next to nothing, but do have people in the Python community - even a link to the Wikipedia page for Python, in that language, is a start (Some are pretty complete and of high quality - the Russian language Wikipedia page for Python, for instance, packs a lot in).

தமிழ்

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('Tamil:  ' + 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(?)

CategoryLanguage CategoryUnicode CategoryPyConIndia2009

TamilLanguage (last edited 2009-10-26 20:18:18 by CarlTrachte)

Unable to edit the page? See the FrontPage for instructions.