Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

num2words python

#ukrainian num2words

num2words = {1: 'один', 2: 'два', 3: 'три', 4: 'чотири', 5: 'п'ять', 
             6: 'шість', 7: 'сім', 8: 'вісім', 9: 'Дев'ять', 10: 'Десять', 
             11: 'Одинадцять', 12: 'Дванадцять', 13: 'Тринадцять', 14: 'Чотирнадцять', 
             15: 'П'ятнадцять', 16: 'Шістнадцять', 17: 'Сімнадцять', 18: 'Вісімнадцять', 
             19: 'Дев'ятнадцять', 20: 'Двадцять', 30: 'Тридцять', 40: 'Сорок', 
             50: 'П'ятдесят', 60: 'Шістдесят', 70: 'Сімдесят', 80: 'Вісімдесят', 
             90: 'дев'яносто', 0: 'нуль'}

def n2w(n):
        try:
            n = int(n)
            return num2words[n]
        except KeyError:
            try:
                n = int(n)
                return num2words[n-n%10] +' '+ num2words[n%10].lower()
            except KeyError:
                print('Number out of range')
Comment

PREVIOUS NEXT
Code Example
Python :: is there a null data type in python 
Python :: Returns the first row as a Row 
Python :: python count appearances in list 
Python :: lambda 
Python :: negative slicing in python 
Python :: python environment 
Python :: convolution operation pytorch 
Python :: class decorator python 
Python :: remove whitespace method 
Python :: sum of even numbers 
Python :: python tkinter focus on entry 
Python :: Accessing of Tuples in python 
Python :: binary search in python 
Python :: Python List count() example with numbers 
Python :: pandas get size of each group 
Python :: time converting module 
Python :: django-filter for multiple values parameter 
Python :: Accessing elements from a Python Dictionary using the get method 
Python :: map vs apply pandas 
Python :: Run Django application using Gunicorn 
Python :: make a tuple 
Python :: __dict__ 
Python :: run python file from cmd 
Python :: python in line elif 
Python :: python string: .upper() 
Python :: run python code online 
Python :: dfs 
Python :: python print array 
Python :: python numpy delete column 
Python :: how to make a variable in python 
ADD CONTENT
Topic
Content
Source link
Name
7+1 =