将字符串转换为运算符

时间:2009-11-16 08:00:19

标签: python

如何将“+”之类的字符串转换为运算符加?谢谢!

10 个答案:

答案 0 :(得分:71)

使用查找表:

import operator
ops = { "+": operator.add, "-": operator.sub } # etc.

print ops["+"](1,1) # prints 2 

答案 1 :(得分:14)

import operator

def get_operator_fn(op):
    return {
        '+' : operator.add,
        '-' : operator.sub,
        '*' : operator.mul,
        '/' : operator.div,
        '%' : operator.mod,
        '^' : operator.xor,
        }[op]

def eval_binary_expr(op1, oper, op2):
    op1,op2 = int(op1), int(op2)
    return get_operator_fn(oper)(op1, op2)

print eval_binary_expr(*("1 + 3".split()))
print eval_binary_expr(*("1 * 3".split()))
print eval_binary_expr(*("1 % 3".split()))
print eval_binary_expr(*("1 ^ 3".split()))

答案 2 :(得分:5)

您可以尝试使用eval(),但如果字符串不是来自您,则会很危险。 否则你可以考虑创建一个字典:

ops = {"+": (lambda x,y: x+y), "-": (lambda x,y: x-y)}

等...然后调用

ops['+'] (1,2)
或者,对于用户输入:

if ops.haskey(userop):
    val = ops[userop](userx,usery)
else:
    pass #something about wrong operator

答案 3 :(得分:4)

每个操作符都有一个魔术方法

OPERATORS = {'+': 'add', '-': 'sub', '*': 'mul', '/': 'div'}

def apply_operator(a, op, b):

    method = '__%s__' % OPERATORS[op]
    return getattr(b, method)(a)

apply_operator(1, '+', 2)

答案 4 :(得分:2)

如何使用查找字典,但使用lambda而不是运算符库呢?

op = {'+': lambda x, y: x + y,
      '-': lambda x, y: x - y}

那么您可以做:

print(op['+'](1,2))

它将输出:

3

答案 5 :(得分:1)

在我看来,Amnon提出的答案是正确的。

但是,您可能也会对这篇关于数学解析器的文章感兴趣:http://effbot.org/zone/simple-top-down-parsing.htm

答案 6 :(得分:0)

我了解您想要执行以下操作: 5“ +” 7 所有这三件事都将由变量传递, 所以 例如:

import operator

#define operators you wanna use
allowed_operators={
    "+": operator.add,
    "-": operator.sub,
    "*": operator.mul,
    "/": operator.truediv}

#sample variables
a=5
b=7
string_operator="+"

#sample calculation => a+b
result=allowed_operators[string_operator](a,b)
print(result)

答案 7 :(得分:0)

使用Jupyter Notebook,我也遇到了同样的问题,无法导入操作员模块。因此,以上代码帮助我获得了见识,但无法在平台上运行。我想出了一种使用所有基本功能的原始方法,它是:(可以进行大量改进,但这只是一个开始……)

# Define Calculator and fill with input variables
# This example "will not" run if aplha character is use for num1/num2 
def calculate_me():
    num1 = input("1st number: ")
    oper = input("* OR / OR + OR - : ")
    num2 = input("2nd number: ")

    add2 = int(num1) + int(num2)
    mult2 = int(num1) * int(num2)
    divd2 = int(num1) / int(num2)
    sub2 = int(num1) - int(num2)

# Comparare operator strings 
# If input is correct, evaluate operand variables based on operator
    if num1.isdigit() and num2.isdigit():
        if oper is not "*" or "/" or "+" or "-":
            print("No strings or ints for the operator")
        else:
            pass
        if oper is "*":
            print(mult2)
        elif oper is "/":
            print(divd2)
        elif oper is "+":
            print(add2)
        elif oper is "-":
            print(sub2)
        else:
            return print("Try again")

# Call the function
calculate_me()
print()
calculate_me()
print()

答案 8 :(得分:0)

如果安全(不在服务器等上)使用 eval()

num_1 = 5

num_2 = 10

op = ['+', '-', '*']

result = eval(f'{num_1} {op[0]} {num_2}')

print(result)

输出: 15

答案 9 :(得分:-11)

你可以这样使用eval

eval("+")