数値単語を整数に変換する
多くの場合、テキストとして表現された数値単語 (例: "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
例:
次の入力を考えてみましょう: "7 Billion One Billion Million Three One Three Three Three Three Seven"
print text2int("seven billion one hundred million thirty one thousand three hundred thirty seven") # 7100031337
以上がPython で数値単語を整数に変換するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。