「加法」 :
def add(x, y):
return x + y「減法」 :
def subtract(x, y):
return x - y「乘法」 (已在先前的回答中給出):
def multiply(x, y):
return x * y「除法」 :
def pide(x, y):
return x / y「取模(求余數)」 :
def modulo(x, y):
return x % y「指數」 :
def power(x, y):
return x ** y「平方根」 :
def square_root(x):
return x ** 0.5「絕對值」 :
def absolute_value(x):
returnabs(x)「自然對數」 :
import math
def natural_log(x):
return math.log(x)「以10為底的對數」 :
def log_base_10(x):
return math.log10(x)「正弦」 :
import math
def sine(x):
return math.sin(x)「余弦」 :
import math
def cosine(x):
return math.cos(x)「正切」 :
import math
def tangent(x):
return math.tan(x)「反正弦」 :
import math
def arcsine(x):
return math.asin(x)「反余弦」 :
import math
def arccosine(x):
return math.acos(x)「反正切」 :
import math
def arctangent(x):
return math.atan(x)「絕對值的冪次」 :
def abs_power(x, y):
returnabs(x) ** y「最大值」 :
def max_value(x, y):
returnmax(x, y)「最小值」 :
def min_value(x, y):
returnmin(x, y)「階乘」
def factorial(n):
if n == 0:
return1
else:
return n * factorial(n - 1)