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

বাংলা

পাইথন - বাংলা উইকিপিডিয়ার নিবন্ধ

/* GPL-licensed software written in Python (wxPython) enabling phonetic typing in Bangla with an English keyboard layout মুক্তলেখা - পাইথন ব্যবহার করে লেখা বাংলা লেখার মুক্ত সফটওয়ার

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 >>> তুমি = 'বাবু'
  13 >>> শালাম_বল(তুমি)
  14 শালাম বাবুকেমন অাছেন?

ফাইলে বাংলা নিয়ে কাজ করতে '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    সালাম_বল(তুমি)

ব্লগ

CategoryLanguage CategoryUnicode

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

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