Links to Python related information in Nepali
ISO 639-1 Code: ne
नेपाली
Code snippet phrases taken from Wikipedia
1 # -*- coding: utf-8 -*-
2 # python 3.0 or 3.1
3
4 नेपाली1 = 'नमस्ते'
5 नेपाली2 = 'मेरो नाम रोशन हुमागाई हो'
6 नेपाली3 = 'काठ्माडौँ जाने बाटो धेरै लामो छ'
7 नेपाली4 = 'नेपालमा बनेको'
8 नेपाली5 = 'म नेपाली हूँ'
9
10 नेपाली = {1:नेपाली1,
11 2:नेपाली2,
12 3:नेपाली3,
13 4:नेपाली4,
14 5:नेपाली5}
15
16 for numx in नेपाली:
17 print(नेपाली[numx])