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

## Python Resources in Malayalam (മലയാളം)

This page provides '''Python-related resources in Malayalam''' for learners and developers.

----

== 🏛 About Malayalam (മലയാളം) ==

 * '''Native to''': 🇮🇳 India (Kerala, parts of Tamil Nadu, Karnataka, Lakshadweep, Puducherry)
 * '''Ethnicity''': Malayali
 * '''Speakers''': ~37 million native speakers (2011 Census)
 * '''Language Family''': Dravidian → Tamil–Malayalam → Malayalam
 * '''Writing System''': Malayalam script (Brahmic)
 * '''ISO Codes''':
   * '''ISO 639-1''': `ml`
   * '''ISO 639-2''': `mal`
   * '''ISO 639-3''': `mal`
 * '''Unicode Range''': [[http://unicode.org/charts/PDF/U0D00.pdf|0D00-0D7F]]
 * '''Wikipedia Article''': [[http://en.wikipedia.org/wiki/Malayalam_language|Learn more about Malayalam]]

----

== 📖 Python Documentation in Malayalam ==

Explore the following resources to learn '''Python in Malayalam''':

=== 🔗 General Links ===

 * [[http://ml.wikipedia.org/wiki/പൈത്തണ്‍_(പ്രോഗ്രാമിങ്ങ്_ഭാഷ)|Wikipedia Article on Python (Malayalam)]]
 * [[http://ml.wikibooks.org/wiki/പൈത്തണ്‍_പ്രോഗ്രാമിങ്ങ്|Python Wikibook in Malayalam]]

=== 📚 Blogs & Tutorials ===

 * [[http://python4school.blogspot.com/2010/05/blog-post.html|Python for School - Lesson 1]]
 * [[http://python4school.blogspot.com/2010/06/blog-post.html|Python for School - Lesson 2]]
 * [[http://python4school.blogspot.com/2010/06/lesson-3.html|Python for School - Lesson 3]]

==== 🎥 Video Tutorials (YouTube) ====

 * [[https://youtu.be/xlWmdUYns4k|Python Malayalam | Full Course - 5 Hours]]  
 * [[https://youtube.com/playlist?list=PLP1t_rSdq4Ckln7UmM4FTRvmne_NCVJA6&si=relagoG5cu1vTX6U|Python Malayalam Tutorial Series (YouTube Playlist)]]  

----

== 🛠 Malayalam Support in Python 3 ==

Python 3 fully supports '''Unicode''', allowing Malayalam text to be used in programs.

{{{
#!python
# Malayalam text in Python
പേര് = "മലയാളം"
print(f"എന്റെ ഭാഷയുടെ പേര്: {പേര്}")
}}}

=== Explanation ===

 * '''പേര് = "മലയാളം"''' → Assigns the string "മലയാളം" to the variable '''പേര്'''.
 * '''print(f"എന്റെ ഭാഷയുടെ പേര്: {പേര്}")''' → Uses an '''f-string''' to format and print text with the variable.

----

CategoryUnicode  
CategoryLanguage  
CategoryPythonIndia