简单类型 / 数字 / 数学运算

from math import *

number = 1000
result = log10(number)
# result is 3.0

print(f"{result = }")