定义函数 def march(x,y): return x*y - x,执行 print(march(5,3)) 的结果是()
def march(x,y): return x*y - x
print(march(5,3))
10
12
15
8