GujaratiLanguage
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.
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
2
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.')