Links to Python related information in Amharaic
ISO 639-1 Code: am
አማርኛ
snippet translations courtesy of Omniglot
1 # Python 3.0/3.1
2
3 # English
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 # transliterated Amharic
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')