mirror of
https://github.com/bblaz/num2words.git
synced 2025-12-06 06:42:25 +00:00
47 lines
1.4 KiB
Python
47 lines
1.4 KiB
Python
'''
|
|
Module: num2word_EU.py
|
|
Requires: num2word_base.py
|
|
Version: 1.1
|
|
|
|
Author:
|
|
Taro Ogawa (tso@users.sourceforge.org)
|
|
|
|
Copyright:
|
|
Copyright (c) 2003, Taro Ogawa. All Rights Reserved.
|
|
Copyright (c) 2013, Savoir-faire Linux inc. All Rights Reserved.
|
|
|
|
Licence:
|
|
This module is distributed under the Lesser General Public Licence.
|
|
http://www.opensource.org/licenses/lgpl-license.php
|
|
|
|
Data from:
|
|
http://www.uni-bonn.de/~manfear/large.php
|
|
|
|
History:
|
|
1.1: add to_currency()
|
|
'''
|
|
from __future__ import unicode_literals
|
|
from num2word_base import Num2Word_Base
|
|
|
|
class Num2Word_EU(Num2Word_Base):
|
|
def set_high_numwords(self, high):
|
|
max = 3 + 6*len(high)
|
|
|
|
for word, n in zip(high, range(max, 3, -6)):
|
|
self.cards[10**n] = word + "illiard"
|
|
self.cards[10**(n-3)] = word + "illion"
|
|
|
|
|
|
def base_setup(self):
|
|
lows = ["non","oct","sept","sext","quint","quadr","tr","b","m"]
|
|
units = ["", "un", "duo", "tre", "quattuor", "quin", "sex", "sept",
|
|
"octo", "novem"]
|
|
tens = ["dec", "vigint", "trigint", "quadragint", "quinquagint",
|
|
"sexagint", "septuagint", "octogint", "nonagint"]
|
|
self.high_numwords = ["cent"]+self.gen_high_numwords(units, tens, lows)
|
|
|
|
def to_currency(self, val, longval=True, jointxt=""):
|
|
return self.to_splitnum(val, hightxt="Euro/s", lowtxt="Euro cent/s",
|
|
jointxt=jointxt, longval=longval)
|
|
|