Links to Python related information in Amharaic

ISO 639-1 Code: am

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

አማርኛ

snippet translations courtesy of Omniglot

   1 # Python 3.0/3.1
   2 
   3 # English
   4 
   5 hello = ['Good morning', 'Good afternoon', 'Good evening']
   6 
   7 def hellofunc(name):
   8     for hellox in hello:
   9         print(hellox + ' ' + name)
  10 
  11 hellofunc('Michael')
  12 
  13 # transliterated Amharic
  14 
  15 sälam = ['əndämn adäru', 'əndämn walu', 'əndämn amäshu']
  16 
  17 def sälamfunc(yenae_sim_x_new):
  18     for sälamx in sälam:
  19         print(sälamx + ' ' + yenae_sim_x_new)
  20 
  21 sälamfunc('Michael')
  22 
  23 # ኣማርኛ
  24 
  25 ሰላም = ['አንደምን አደሩ', 'አንደምን ዋሉ', 'አንደምን አመሹ']
  26 
  27 def ሰላምfunc(የኔ_ስም_x_ነጡ):
  28     for ሰላምx in ሰላም:
  29         print(ሰላምx + ' ' + የኔ_ስም_x_ነጡ)
  30 
  31 ሰላምfunc('Michael')

CategoryLanguage CategoryUnicode

AmharicLanguage (last edited 2009-10-17 05:55:36 by CarlTrachte)

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