How to print Odia Characters and Numbers using Python? Last Updated : 10 Jul, 2020 Comments Improve Suggest changes Like Article Like Report Odia(ଓଡ଼ିଆ) is an Indo-Aryan language spoken in the Indian state of Odisha. The Odia Script is developed from the Kalinga alphabet, one of the many descendants of the Brahmi script of ancient India. The earliest known example of Odia language, in the Kalinga script, dates from 1051. Vowels: ଅ ଆ ଇ ଈ ଉ ଊ ଋ ୠ ଏ ଐ ଓ ଔ Consonants: କ ଖ ଗ ଘ ଙ ଚ ଛ ଜ ଝ ଞ ଟ ଠ ଡ ଢ ଣ ତ ଥ ଦ ଧ ନ ପ ଫ ବ ଭ ମ ଯ ର ଲ ଳ ଶ ଷ ସ ହ ୟ ୱ Numbers: ୦ ୧ ୨ ୩ ୪ ୫ ୬ ୭ ୮ ୯ Prerequisite Before printing odia characters and numbers one has to install odia library. One can install odia library using pip command. pip install odia Printing odia characters using Python One can print the odia vowels using odia.vowels() and using odia.consonants() can print odia consonants. Example: Python3 1== # Python program to print odia characters # Import odia library import odia # Print vowels print(odia.vowels) # print consonants print(odia.consonants) Output: ['ଅ', 'ଆ', 'ଇ', 'ଈ', 'ଉ', 'ଊ', 'ଋ', 'ୠ', 'ଏ', 'ଐ', 'ଓ', 'ଔ'] ['କ', 'ଖ', 'ଗ', 'ଘ', 'ଙ', 'ଚ', 'ଛ', 'ଜ', 'ଝ', 'ଞ', 'ଟ', 'ଠ', 'ଡ', 'ଢ', 'ଣ', 'ତ', 'ଥ', 'ଦ', 'ଧ', 'ନ', 'ପ', 'ଫ', 'ବ', 'ଭ', 'ମ', 'ଯ', 'ୟ', 'ର', 'ଳ', 'ଲ', 'ଵ', 'ଶ', 'ଷ', 'ସ', 'ହ', 'କ୍ଷ', 'ଜ୍ଞ'] Printing odia numbers using Python One can print the odia numbers using odia.numbers(). Example: Python3 1== # Python program to print odia numbers # Import odia library import odia # Print numbers print(odia.numbers) Output: ['୦', '୧', '୨', '୩', '୪', '୫', '୬', '୭', '୮', '୯'] Comment More infoAdvertise with us Next Article How to print Odia Characters and Numbers using Python? A AmiyaRanjanRout Follow Improve Article Tags : Python python-utility Practice Tags : python Similar Reads How To Print Unicode Character In Python? Unicode characters play a crucial role in handling diverse text and symbols in Python programming. This article will guide you through the process of printing Unicode characters in Python, showcasing five simple and effective methods to enhance your ability to work with a wide range of characters Pr 2 min read How to Create a Programming Language using Python? In this article, we are going to learn how to create your own programming language using SLY(Sly Lex Yacc) and Python. Before we dig deeper into this topic, it is to be noted that this is not a beginner's tutorial and you need to have some knowledge of the prerequisites given below. PrerequisitesRou 7 min read Ways to Print Escape Characters in Python In Python, escape characters like \n (newline) and \t (tab) are used for formatting, with \n moving text to a new line and \t adding a tab space. By default, Python interprets these sequences, so I\nLove\tPython will display "Love" on a new line and a tab before "Python." However, if you want to dis 2 min read How to use Unicode and Special Characters in Tkinter ? Prerequisite: Tkinter Python offers multiple options for developing a GUI (Graphical User Interface). Out of all the GUI methods, Tkinter is the most commonly used method. It is a standard Python interface to the Tk GUI toolkit shipped with Python. Python with Tkinter is the fastest and easiest way 1 min read Converting an Integer to ASCII Characters in Python In Python, working with integers and characters is a common task, and there are various methods to convert an integer to ASCII characters. ASCII (American Standard Code for Information Interchange) is a character encoding standard that represents text in computers. In this article, we will explore s 2 min read Like