Describe Dogri डोगरी Language and include links to Python information in डोगरी Language here.
ISO 639-2 Code: doi
डोगरी
Words for code snippet from Wikipedia
Right to left script for Dogri not rendering in idle - need to update.
1 # -*- coding: utf-8 -*-
2 # python 3.0 or python 3.1
3
4 # trouble getting alternate right to left
5 # script to render in idle
6 डोगरी = {'Yes':'ऑह',
7 'With':'कन्ने',
8 'Shoes':'नुक्के',
9 'Door':'पित्त',
10 'What':'के',
11 'Why':'की',
12 'Watermelon':'अद्वाना',
13 'World':'दुनिया'}
14
15 for english in डोगरी:
16 print(chr(34) + english + chr(34) + ' in English is ' +
17 डोगरी[english] + ' in Dogri.')