Differences between revisions 2 and 21 (spanning 19 versions)
Revision 2 as of 2009-09-02 02:00:00
Size: 1645
Editor: CarlTrachte
Comment: added rules as comment and added Wikipedia link
Revision 21 as of 2010-04-06 11:20:13
Size: 3472
Editor: CarlTrachte
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
This page's links go to the various languages' pages, most of which have been
copied from the other set of language pages, with a few updates.
Line 34: Line 31:
ISO 639-1 Code: bn
Line 36: Line 35:
http://www.google.com/gwt/n?u=http%3A%2F%2Fbn.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DPython%26redirect%3Dno (Wikipedia) /* Bangla-language Wikipedia page for Python */
[[http://bn.wikipedia.org/wiki/%E0%A6%AA%E0%A6%BE%E0%A6%87%E0%A6%A5%E0%A6%A8_%28%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A7%8B%E0%A6%97%E0%A7%8D%E0%A6%B0%E0%A6%BE%E0%A6%AE%E0%A6%BF%E0%A6%82_%E0%A6%AD%E0%A6%BE%E0%A6%B7%E0%A6%BE%29|http://bn.wikipedia.org/wiki/পাইথন_(প্রোগ্রামিং_ভাষা)]]
Line 38: Line 38:
/* this link mentions Python and gtk - I think it's really just for getting Bengali characters to show up - GPL license */
http://code.google.com/p/muktalekhaa/ (language software in Python?)
/* GPL-licensed software written in Python (wxPython) enabling phonetic typing in Bangla with an English keyboard layout */
http://code.google.com/p/muktalekhaa/ বাংলা লেখার মুক্ত সফটওয়ার
Line 41: Line 41:
NewLanguagePage [[http://pybangla.appspot.com|pybangla]] - পাইথন বাংলাদেশ


/* code snippet provided by Rami Chowdhury, who apologises for his awful spelling throughout this page */
পাইথন ৩ থেকে, বাংলা শবদ দিয়ে প্রোগ্রাম লেখা জায়:
{{{#!python
$ python3.1
Python 3.1 (r31:73572, Aug 10 2009, 18:55:18)
[GCC 4.3.2 20081105 (Red Hat 4.3.2-7)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> def শালাম_বল(নাম):
... কথা = "শালাম {0}। কেমন অাছেন?".format(নাম)
... print(কথা)
...
>>> অামি = 'রামি'
>>> শালাম_বল(অামি)
শালাম রামি। কেমন অাছেন?
>>> তমি = 'Carl'
>>> শালাম_বল(তমি)
শালাম Carl। কেমন অাছেন?
}}}

ফায়িলে লেখতে, 'utf-8' ব্যবহার করূন:
{{{#!python
# -*- coding: utf-8 -*-
#!/usr/bin/python3.1

def শালাম_বল(নাম):
   কথা = "শালাম {0}। কেমন অাছেন?".format(নাম)
   print(কথা)

অামি = 'রামি'
তমি = 'Carl'

if __name__ == '__main__':
   শালাম_বল(অামি)
   শালাম_বল(তমি)
}}}


=== Blogs ===

  * [[http://forum.amaderprojukti.com/viewtopic.php?f=42&t=4794&start=0&st=0&sk=t&sd=a|amaderprojukti.com]] - forum thread - general info
  * [[http://mushfiqsimple.wordpress.com/|mushfigsimple]] - gpa calculator

CategoryLanguage
CategoryUnicode

Links to Python information in Bengali Language

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

ISO 639-1 Code: bn

বাংলা

http://bn.wikipedia.org/wiki/পাইথন_(প্রোগ্রামিং_ভাষা)

http://code.google.com/p/muktalekhaa/ বাংলা লেখার মুক্ত সফটওয়ার

pybangla - পাইথন বাংলাদেশ

পাইথন ৩ থেকে, বাংলা শবদ দিয়ে প্রোগ্রাম লেখা জায়:

   1 $ python3.1
   2 Python 3.1 (r31:73572, Aug 10 2009, 18:55:18)
   3 [GCC 4.3.2 20081105 (Red Hat 4.3.2-7)] on linux2
   4 Type "help", "copyright", "credits" or "license" for more information.
   5 >>> def শালাম_বল(নাম):
   6 ...     কথা = "শালাম {0}। কেমন অাছেন?".format(নাম)
   7 ...     print(কথা)
   8 ...
   9 >>> অামি = 'রামি'
  10 >>> শালাম_বল(অামি)
  11 শালাম রামিকেমন অাছেন?
  12 >>> তমি = 'Carl'
  13 >>> শালাম_বল(তমি)
  14 শালাম Carlকেমন অাছেন?

ফায়িলে লেখতে, 'utf-8' ব্যবহার করূন:

   1 # -*- coding: utf-8 -*-
   2 #!/usr/bin/python3.1
   3 
   4 def শালাম_বল(নাম):
   5    কথা = "শালাম {0}। কেমন অাছেন?".format(নাম)
   6    print(কথা)
   7 
   8 অামি = 'রামি'
   9 তমি = 'Carl'
  10 
  11 if __name__ == '__main__':
  12    শালাম_বল(অামি)
  13    শালাম_বল(তমি)

Blogs

CategoryLanguage CategoryUnicode

BengaliLanguage (last edited 2012-01-02 16:25:38 by 113)

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