Size: 1757
Comment: added link to blog
|
← Revision 18 as of 2025-04-04 16:03:51 ⇥
Size: 3649
Comment: added two youtube Tutorials
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
Links to Python related information in Malayalam | |
Line 31: | Line 30: |
'''~+മലയാളം+~''' | ## Python Resources in Malayalam (മലയാളം) |
Line 33: | Line 32: |
== Links == | This page provides '''Python-related resources in Malayalam''' for learners and developers. |
Line 35: | Line 34: |
[[http://ml.wikipedia.org/wiki/പൈത്തണ്_(പ്രോഗ്രാമിങ്ങ്_ഭാഷ)|Wikipedia Article]] | ---- |
Line 37: | Line 36: |
[[http://ml.wikibooks.org/wiki/പൈത്തണ്_പ്രോഗ്രാമിങ്ങ്|Wikibook]] | == 🏛 About Malayalam (മലയാളം) == |
Line 39: | Line 38: |
== Malayalam support in Python 3 == | * '''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. |
Line 43: | Line 80: |
# Malayalam text in Python | |
Line 44: | Line 82: |
print("എന്റെ ഭാഷയുടെ പേര്: %s" % പേര്) |
print(f"എന്റെ ഭാഷയുടെ പേര്: {പേര്}") |
Line 48: | Line 85: |
[[http://jaganadhg.freeflux.net/blog/archive/2009/10/04/python3-is-wonderful.html|blog - another Python 3 code snippet]] | === Explanation === |
Line 50: | Line 87: |
NewLanguagePage | * '''പേര് = "മലയാളം"''' → Assigns the string "മലയാളം" to the variable '''പേര്'''. * '''print(f"എന്റെ ഭാഷയുടെ പേര്: {പേര്}")''' → Uses an '''f-string''' to format and print text with the variable. ---- CategoryUnicode CategoryLanguage CategoryPythonIndia |
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: 0D00-0D7F
Wikipedia Article: Learn more about Malayalam
📖 Python Documentation in Malayalam
Explore the following resources to learn Python in Malayalam:
🔗 General Links
📚 Blogs & Tutorials
🎥 Video Tutorials (YouTube)
🛠 Malayalam Support in Python 3
Python 3 fully supports Unicode, allowing Malayalam text to be used in programs.
Explanation
പേര് = "മലയാളം" → Assigns the string "മലയാളം" to the variable പേര്.
print(f"എന്റെ ഭാഷയുടെ പേര്: {പേര്}") → Uses an f-string to format and print text with the variable.