python實現(xiàn)將英文單詞表示的數(shù)字轉換成阿拉伯數(shù)字的方法
本文實例講述了python實現(xiàn)將英文單詞表示的數(shù)字轉換成阿拉伯數(shù)字的方法。分享給大家供大家參考。具體實現(xiàn)方法如下:
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:
output += number*10
else:
output += number
#else: nothing special
currentPosition = 'hundred'
elif currentPosition == 'hundred':
if word not in [ 'hundred', 'thousand']:
number = _known[word]
output += number*100
currentPosition = 'thousand'
elif word == 'thousand':
currentPosition = 'thousand'
else:
currentPosition = 'hundred'
elif currentPosition == 'thousand':
assert word != 'hundred'
if word != 'thousand':
number = _known[word]
output += number*1000
else:
assert "Can't be here" == None
return(output)
希望本文所述對大家的Python程序設計有所幫助。
相關文章
簡單了解Python下用于監(jiān)視文件系統(tǒng)的pyinotify包
這篇文章主要介紹了Python下用于監(jiān)視文件系統(tǒng)的pyinotify包,pyinotify基于inotify事件驅動機制,需要的朋友可以參考下2015-11-11
MacOS安裝python報錯"zsh:?command?not?found:python"的
這篇文章主要給大家介紹了關于MacOS安裝python報錯"zsh:?command?not?found:python"的解決方法,文中將解決的辦法介紹的非常詳細,需要的朋友可以參考下2023-02-02
使用Python的networkx繪制精美網(wǎng)絡圖教程
今天小編就為大家分享一篇使用Python的networkx繪制精美網(wǎng)絡圖教程,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-11-11
Python腳本實現(xiàn)自動將數(shù)據(jù)庫備份到 Dropbox
本文給大家分享的是作者使用python腳本實現(xiàn)自動備份mysql數(shù)據(jù)庫到的dropbox網(wǎng)盤的代碼,非常的簡單實用,有需要的小伙伴可以參考下2017-02-02
Python連接SQLite數(shù)據(jù)庫操作實戰(zhàn)指南從入門到精通
在Python中使用SQLite進行數(shù)據(jù)庫操作時,我們將深入研究SQLite數(shù)據(jù)庫的創(chuàng)建、表格管理、數(shù)據(jù)插入、查詢、更新和刪除等關鍵主題,幫助你全面了解如何使用SQLite進行數(shù)據(jù)庫操作2023-11-11
python利用tkinter實現(xiàn)圖片格式轉換的示例
這篇文章主要介紹了python利用tkinter實現(xiàn)圖片格式轉換,幫助大家更好的理解和使用python,感興趣的朋友可以了解下2020-09-09
基于Flask實現(xiàn)一個智能的多語言Hello World服務器
這篇文章主要為大家詳細介紹了如何使用Flask框架創(chuàng)建一個智能的多語言Hello World服務器,能夠自動檢測訪問者的瀏覽器語言設置,需要的可以了解下2025-03-03
python實現(xiàn)照片集變成視頻的代碼實現(xiàn)
看著電腦里亂七八糟的照片,有大有小,寬高不一,突然想找個方式把他們統(tǒng)一起來,然后做成視頻更好,所以本文給大家介紹了python實現(xiàn)照片集變成視頻的實現(xiàn),需要的朋友可以參考下2024-10-10

