python-small-examples

61 不用else和if实现计算器

from operator import *


def calculator(a, b, k):
    return {
        '+': add,
        '-': sub,
        '*': mul,
        '/': truediv,
        '**': pow
    }[k](a, b)


calculator(1, 2, '+')  # 3
calculator(3, 4, '**')  # 81
[上一个例子](/python-small-examples/md/59.html) [下一个例子](/python-small-examples/md/61.html)