Links to Python related information in Sinhala

ISO Codes

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 speaksinhala.com

   1 >>> # transcribing words from image
   2 >>> '\u0DB4\u0DD4\u0DC2\u0DCA\u0DB4\u0DCF' # the Sinaha name Pushpa
   3 >>> 'පුෂ්පා'
   4 >>> '\u0DB1\u0DB8' # name
   5 >>> 'නම'
   6 >>> '\u0DD9\u0DCA' # my (mage)
   7 >>> 'මෙග්'

   1 # -*- coding: utf-8 -*-
   2 # python 3.0 or 3.1
   3 
   4 def my_name_is(name):
   5     print('My name is {0}.'.format(name))
   6 
   7 def මෙග්_නම(නම):
   8     print('මෙග් නම {0}.'.format(නම))
   9 
  10 name = 'Pushpa'
  11 my_name_is(name)
  12 
  13 නම = 'පුෂ්පා'
  14 මෙග්_නම(නම)

Sinhala-Unicode forum message - message from 2006 introducing Python with code snippets

Blogs

CategoryLanguage CategoryUnicode

SinhalaLanguage (last edited 2009-12-30 18:07:09 by CarlTrachte)

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