Describe Gujarati ગુજરાતી and include links to Python information in the Gujarati Language here.
ISO 639-1 Code: gu
ગુજરાતી
Phrases for code snippet from masteranylanguage.com
1 # -*- coding: utf-8 -*-
2 # python 3.0 or 3.1
3
4 ગુજરાતી = {'Yes':'હા',
5 'No':'ના',
6 'Thank you':'દુન્યવદ્',
7 "You're welcome":'તમરો અભાર્',
8 'Excuse me':'મફ કર્જો',
9 "I'm sorry":'મન્ને મફ કરો',
10 'What is your name?':'તમારું નામ શું છે',
11 'My name is . . .':'મારું નામ ... છે',
12 'Hello':'નમસ્ટે',
13 'Goodbye':'આવ્જો',
14 'How are you?':'કેમ્ ચ્હો',
15 'Welcome':'પુતેરો'}
16
17 for english in ગુજરાતી:
18 print(chr(34) + english + chr(34) + ' in English is ' +
19 ગુજરાતી[english] + ' in Gujarati.')