Differences between revisions 10 and 11
Revision 10 as of 2009-10-22 21:00:44
Size: 2293
Editor: CarlTrachte
Comment:
Revision 11 as of 2009-10-22 21:39:19
Size: 2312
Editor: CarlTrachte
Comment: work in progress
Deletions are marked like this. Additions are marked like this.
Line 62: Line 62:
অসমীয়া1 = """অ' অসমীয়া1 = """অ' \u09CB\u09AE\u09F0

Links to Python information in the Assamese Language

ISO 639-1 Code: as

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.

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).

অসমীয়া

Texts for code snippets (national song) courtesy of www.assam.org

   1 # -*- coding: utf-8 -*-
   2 # python 3.0 or python 3.1
   3 
   4 LATINERSE1 = """\n\na' mor Aponaar dex
   5 a' mor cikuNI dex
   6 enekHan xuwalaa enekHan Xufalaa
   7 enekHan maramar dex\n\n"""
   8 
   9 LATINERSE2 = """\n\na' mor XurIyaa maat
  10 aXamar XuwadI maat
  11 pRItHiwIr ka'to bicaari janamto
  12 nopowaa karileo paat\n\n"""
  13 
  14 LATINERSE3 = """a' mor opajaa THaai
  15 a' mor aXamI aai
  16 caai laoNN ebaar mukHani tomaar
  17 hepaah mor palowaa naai"""
  18 
  19 # not necessary (could use list), but illustrates dictionary
  20 LATIN = {1:LATINVERSE1, 1:LATINVERSE2, 3:LATINVERSE3}
  21 
  22 for num in range(3):
  23    print(LATIN[num + 1])
  24 
  25 অসমীয়া1 = """' \u09CB\u09AE\u09F0
  26 ' """
  27 
  28 অসমীয়া2 = """'
  29 """
  30 
  31 অসমীয়া3 = """'
  32 ' """
  33 
  34 অসমীয়া = {1:অসমীয়া1, 2:অসমীয়া2, 3:অসমীয়া3}
  35 
  36 for num in range(3):
  37     print(অসমীয়া[num + 1])


CategoryLanguage CategoryUnicode CategoryPythonIndia

AssameseLanguage (last edited 2009-10-23 03:16:56 by CarlTrachte)

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