Last active
December 24, 2015 01:59
-
-
Save atmb4u/6727093 to your computer and use it in GitHub Desktop.
A quick proof that python unicode works; and it works beautifully! Python 3.x example.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class സൂചിക: | |
""" | |
മലയാളത്തിൽ പൈതോണ് കോഡ് ചെയ്യാം എന്നുള്ളതിനുള്ള തെളിവ് | |
Proof that python can use malayalam language (Only on Python 3x) | |
""" | |
def സൂചിക(സ്വയം): | |
print(u"പൈതോണ് ഇപ്പോൾ മലയാളത്തിലും !") | |
സൂചി = സൂചിക() | |
സൂചി.സൂചിക() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Actually many other languages does that too. Even C#. There are many languages out there which can make use of non-english text as identifiers. But AFAIK, there is no language that makes use of non-english keywords though.