Links to Python related information in Amharaic ISO 639-1 Code: am /* 1SEP09 Ideally, all the language pages should be like the Polish or Turkish pages - all native language, only the necessary English. 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 ) 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 [[http://www.omniglot.com/language/phrases/amharic.php|Omniglot]] {{{#!python # Python 3.0/3.1 # English hello = ['Good morning', 'Good afternoon', 'Good evening'] def hellofunc(name): for hellox in hello: print(hellox + ' ' + name) hellofunc('Michael') # transliterated Amharic sälam = ['əndämn adäru', 'əndämn walu', 'əndämn amäshu'] def sälamfunc(yenae_sim_x_new): for sälamx in sälam: print(sälamx + ' ' + yenae_sim_x_new) sälamfunc('Michael') # ኣማርኛ ሰላም = ['አንደምን አደሩ', 'አንደምን ዋሉ', 'አንደምን አመሹ'] def ሰላምfunc(የኔ_ስም_x_ነጡ): for ሰላምx in ሰላም: print(ሰላምx + ' ' + የኔ_ስም_x_ነጡ) ሰላምfunc('Michael') }}} CategoryLanguage CategoryUnicode