Simple types / Numbers / Mathematical operations
Exponentiation
Square root
min and max values
Logarithm
Decimal logarithm
Sine, cosine and tangent
from
math
import
*
number =
100
result =
sqrt
(number)
# result
is
10.0
print
(f
"
{result = }
"
)