AssameseLanguage
This wiki is in the process of being archived due to lack of usage and the resources necessary to serve it — predominately to bots, crawlers, and LLM companies. Edits are discouraged.
Pages are preserved as they were at the time of archival. For current information, please visit python.org.
If a change to this archive is absolutely needed, requests can be made via the infrastructure@python.org mailing list.
Links to Python information in the Assamese Language
ISO 639-1 Code: as
অসমীয়া
Texts for code snippets (national song) courtesy of www.assam.org
1
2
3
4 LATINLINE1 = "\n\na' mor Aponaar dex"
5 LATINLINE2 = "a' mor cikuNI dex"
6 LATINLINE3 = 'enekHan xuwalaa enekHan Xufalaa'
7 LATINLINE4 = 'enekHan maramar dex\n\n'
8
9
10 LATIN = {1:LATINLINE1, 2:LATINLINE2, 3:LATINLINE3, 4:LATINLINE4}
11
12 for num in range(4):
13 print(LATIN[num + 1])
14
15 অসমীয়া1 = "অ' েমাৰ আেপানাৰ েদশ"
16 অসমীয়া2 = "অ' েমাৰ িচকুণী েদশ"
17 অসমীয়া3 = 'এেনখন শুৢবলা এেনখন সুফলা'
18 অসমীয়া4 = 'এেনখন মৰমৰ েদশ'
19
20 অসমীয়া = {1:অসমীয়া1, 2:অসমীয়া2, 3:অসমীয়া3, 4:অসমীয়া4}
21
22 for num in range(4):
23 print(অসমীয়া[num + 1])