숫자 단어를 정수로 변환
텍스트로 표현된 숫자 단어(예: "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 중국어 웹사이트의 기타 관련 기사를 참조하세요!