Differences between revisions 3 and 5 (spanning 2 versions)
Revision 3 as of 2009-10-08 04:13:00
Size: 1221
Editor: svaksha
Comment:
Revision 5 as of 2009-10-24 04:32:25
Size: 2053
Editor: CarlTrachte
Comment: added code snippet
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:

ISO 639-1 Code: pa
Line 31: Line 33:

Punjabi in code snippet courtesy of sarwara - Sikh blogger and moderator of [[http://www.phrasebase.com/forum/members/s/sarwara.php|phrasebase.com]]

{{{# -*- coding: utf-8 -*-
# python 3.0 or 3.1

ਪੰਜਾਬੀ1 = 'ਮੈਂ ਨਿੱਕੀ ਉਮਰੇ'
ਪੰਜਾਬੀ2 = 'ਸਾਰਾ ਦਰਦ ਹੰਡਾ ਬੈਠਾ'
ਪੰਜਾਬੀ3 = 'ਸਾਡੀ ਜੋਬਨ ਰੁੱਤ ਲਈ'
ਪੰਜਾਬੀ4 = 'ਦਰਦ ਕੁਵਾਰਾ ਹੋਰ ਦਿਉ'

# easier to do this with list
# use of dictionary to illustrate keys and Punjabi identifiers
ਸਿ਼ਵ = {1:ਪੰਜਾਬੀ1,
        2:ਪੰਜਾਬੀ2,
        3:ਪੰਜਾਬੀ3,
        4:ਪੰਜਾਬੀ4}

for numx in range(4):
    print(ਸਿ਼ਵ[numx + 1])
}}}
Line 32: Line 56:
CategoryUnicode CategoryPythonIndia CategoryLanguage
CategoryUnicode
CategoryPythonIndia

Links to Python information in Punjabi Language here.

ISO 639-1 Code: pa

ਪੰਜਾਬੀ

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

Punjabi in code snippet courtesy of sarwara - Sikh blogger and moderator of phrasebase.com

{{{# -*- coding: utf-8 -*- # python 3.0 or 3.1

ਪੰਜਾਬੀ1 = 'ਮੈਂ ਨਿੱਕੀ ਉਮਰੇ' ਪੰਜਾਬੀ2 = 'ਸਾਰਾ ਦਰਦ ਹੰਡਾ ਬੈਠਾ' ਪੰਜਾਬੀ3 = 'ਸਾਡੀ ਜੋਬਨ ਰੁੱਤ ਲਈ' ਪੰਜਾਬੀ4 = 'ਦਰਦ ਕੁਵਾਰਾ ਹੋਰ ਦਿਉ'

# easier to do this with list # use of dictionary to illustrate keys and Punjabi identifiers ਸਿ਼ਵ = {1:ਪੰਜਾਬੀ1,

  • 2:ਪੰਜਾਬੀ2, 3:ਪੰਜਾਬੀ3, 4:ਪੰਜਾਬੀ4}

for numx in range(4):

  • print(ਸਿ਼ਵ[numx + 1])

}}}


CategoryLanguage CategoryUnicode CategoryPythonIndia

PunjabiLanguage (last edited 2009-10-24 04:34:17 by CarlTrachte)

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