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