Python에서 숫자 단어를 정수로 어떻게 변환할 수 있나요?

Patricia Arquette
풀어 주다: 2024-11-20 18:44:20
원래의
770명이 탐색했습니다.

How Can I Convert Number Words to Integers in Python?

숫자 단어를 정수로 변환

텍스트로 표현된 숫자 단어(예: "one", "two)를 변환해야 하는 경우가 많습니다. ")를 해당 정수 값으로 변환합니다.

해결책:

이 변환을 용이하게 하기 위해 text2int라는 Python 함수가 도입되었습니다. 이 함수는 숫자 단어의 포괄적인 사전( numwords)를 사용하여 텍스트 표현을 정수로 매핑합니다. 구현은 다음과 같습니다.

def text2int(textnum, numwords={}):
    if not numwords:
        # Initialize the numwords dictionary only on the first call
        units = [
            "zero", "one", "two", "three", "four", "five", "six", "seven", "eight",
            "nine", "ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen",
            "sixteen", "seventeen", "eighteen", "nineteen",
        ]

        tens = ["", "", "twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty", "ninety"]

        scales = ["hundred", "thousand", "million", "billion", "trillion"]

        numwords["and"] = (1, 0)
        for idx, word in enumerate(units):    numwords[word] = (1, idx)
        for idx, word in enumerate(tens):     numwords[word] = (1, idx * 10)
        for idx, word in enumerate(scales):   numwords[word] = (10 ** (idx * 3 or 2), 0)

    current = result = 0
    for word in textnum.split():
        if word not in numwords:
            raise Exception("Illegal word: " + word)

        scale, increment = numwords[word]
        current = current * scale + increment
        if scale > 100:
            result += current
            current = 0

    return result + current
로그인 후 복사

예:

다음 입력을 고려하세요. "70억 1억 31,3337"

print text2int("seven billion one hundred million thirty one thousand three hundred thirty seven")  # 7100031337
로그인 후 복사

위 내용은 Python에서 숫자 단어를 정수로 어떻게 변환할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿