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

from math import *

number = 100
result = sqrt(number)
# result is 10.0

print(f"{result = }")