Python で文字列を演算子関数に変換するにはどうすればよいですか?

Linda Hamilton
リリース: 2024-11-15 09:57:03
オリジナル
397 人が閲覧しました

How to Convert Strings to Operator Functions in Python?

Finding Operators from Strings

In Python, it is possible to convert a string representing an operator, such as "+", into the corresponding operator function.

Solution: Utilize a Lookup Table

One effective approach is to leverage a lookup table. Create a dictionary ops, where the keys are strings representing operators, and the values are the corresponding operator functions from operator module. For instance:

import operator
ops = { "+": operator.add, "-": operator.sub }
ログイン後にコピー

Now, you can retrieve the operator function by accessing the dictionary with the operator's string representation. For example, to obtain the addition operator:

add_operator = ops["+"]
ログイン後にコピー

Usage

Once you have the desired operator, you can use it like any other function:

result = add_operator(num1, num2)
ログイン後にコピー

Example

Consider evaluating the expression "1 + 1" using this approach:

first_num = 1
second_num = 1
add_operator = ops["+"]
result = add_operator(first_num, second_num)

print(result)  # Prints 2
ログイン後にコピー

以上がPython で文字列を演算子関数に変換するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート