def add(a,b): #加法运算 return a+b def sub(a,b): #减法运算 return a-b def mul(a,b): #乘法运算 return a*b def div(a,b=1): #除法运算 return a/b