ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

python将英文单词表示的数字转换成阿拉伯数字的代码

2021-10-28 09:02:31  阅读:188  来源: 互联网

标签:inputWordArr word python 阿拉伯数字 number assert spoken 英文单词 hundred


下边内容内容是关于python将英文单词表示的数字转换成阿拉伯数字的内容。
import re
_known = {
‘zero’: 0,
‘one’: 1,
‘two’: 2,
‘three’: 3,
‘four’: 4,
‘five’: 5,
‘six’: 6,
‘seven’: 7,
‘eight’: 8,
‘nine’: 9,
‘ten’: 10,
‘eleven’: 11,
‘twelve’: 12,
‘thirteen’: 13,
‘fourteen’: 14,
‘fifteen’: 15,
‘sixteen’: 16,
‘seventeen’: 17,
‘eighteen’: 18,
‘nineteen’: 19,
‘twenty’: 20,
‘thirty’: 30,
‘forty’: 40,
‘fifty’: 50,
‘sixty’: 60,
‘seventy’: 70,
‘eighty’: 80,
‘ninety’: 90
}
def spoken_word_to_number(n):
“”“Assume n is a positive integer”.
assert _positive_integer_number(‘nine hundred’) == 900
assert spoken_word_to_number(‘one hundred’) == 100
assert spoken_word_to_number(‘eleven’) == 11
assert spoken_word_to_number(‘twenty two’) == 22
assert spoken_word_to_number(‘thirty-two’) == 32
assert spoken_word_to_number(‘forty two’) == 42
assert spoken_word_to_number(‘two hundred thirty two’) == 232
assert spoken_word_to_number(‘two thirty two’) == 232
assert spoken_word_to_number(‘nineteen hundred eighty nine’) == 1989
assert spoken_word_to_number(‘nineteen eighty nine’) == 1989
assert spoken_word_to_number(‘one thousand nine hundred and eighty nine’) == 1989
assert spoken_word_to_number(‘nine eighty’) == 980
assert spoken_word_to_number(‘nine two’) == 92 # wont be able to convert this one
assert spoken_word_to_number(‘nine thousand nine hundred’) == 9900
assert spoken_word_to_number(‘one thousand nine hundred one’) == 1901
“”"

n = n.lower().strip()
if n in _known:
    return _known[n]
else:
    inputWordArr = re.split('[ -]', n)

assert len(inputWordArr) > 1 #all single words are known
#Check the pathological case where hundred is at the end or thousand is at end
if inputWordArr[-1] == 'hundred':
    inputWordArr.append('zero')
    inputWordArr.append('zero')
if inputWordArr[-1] == 'thousand':
    inputWordArr.append('zero')
    inputWordArr.append('zero')
    inputWordArr.append('zero')
if inputWordArr[0] == 'hundred':
    inputWordArr.insert(0, 'one')
if inputWordArr[0] == 'thousand':
    inputWordArr.insert(0, 'one')

inputWordArr = [word for word in inputWordArr if word not in ['and', 'minus', 'negative']]
currentPosition = 'unit'
prevPosition = None
output = 0
for word in reversed(inputWordArr):
    if currentPosition == 'unit':
        number = _known[word]
        output += number
        if number > 9:
            currentPosition = 'hundred'
        else:
            currentPosition = 'ten'
    elif currentPosition == 'ten':
        if word != 'hundred':
            number = _known[word]
            if number < 10:
            else:
                output += number
        #else: nothing special
        currentPosition = 'hundred'
    elif currentPosition == 'hundred':
        if word not in [ 'hundred', 'thousand']:
            number = _known[word]
            currentPosition = 'thousand'
        elif word == 'thousand':
            currentPosition = 'thousand'
        else:
            currentPosition = 'hundred'
    elif currentPosition == 'thousand':
        assert word != 'hundred'
        if word != 'thousand':
            number = _known[word]
    else:
        assert "Can't be here" == None

return(output)

标签:inputWordArr,word,python,阿拉伯数字,number,assert,spoken,英文单词,hundred
来源: https://blog.csdn.net/weixin_44099735/article/details/121006777

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有