AmharicLanguage
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 related information in Amharaic
ISO 639-1 Code: am
አማርኛ
snippet translations courtesy of Omniglot
1
2
3
4
5 hello = ['Good morning', 'Good afternoon', 'Good evening']
6
7 def hellofunc(name):
8 for hellox in hello:
9 print(hellox + ' ' + name)
10
11 hellofunc('Michael')
12
13
14
15 sälam = ['əndämn adäru', 'əndämn walu', 'əndämn amäshu']
16
17 def sälamfunc(yenae_sim_x_new):
18 for sälamx in sälam:
19 print(sälamx + ' ' + yenae_sim_x_new)
20
21 sälamfunc('Michael')
22
23
24
25 ሰላም = ['አንደምን አደሩ', 'አንደምን ዋሉ', 'አንደምን አመሹ']
26
27 def ሰላምfunc(የኔ_ስም_x_ነጡ):
28 for ሰላምx in ሰላም:
29 print(ሰላምx + ' ' + የኔ_ስም_x_ነጡ)
30
31 ሰላምfunc('Michael')