我有简单的数学操作功能。 如果我用进口的另一种文字来说明这一点,我就没有产出。 如果我删除<条码>f功能条码>,所有东西都是工作罚款。 如何界定这一职能? 页: 1
def calci(a, op, b):
if op == + :
c = a + b
elif op == - :
c = a-b
elif op == * :
c= a*b
elif op == / :
if(b == 0):
print( can t divide )
c = a/b
print( value is ,c)
return c
result = calci(12, + , 12)
print(result)