有如下 Python 的自定义函数, 执行该程序后, 结果是?( )
def calc(x,y,op):
return eval(str(x)+op+str(y))
print(calc(3,5,'+'))
8
35
None
-2