Python Function Reference

math.tan
Return the tangent of x (in radians).
Python 3.13
math.tan(x)
x
The angle in radians.
Examples
Python 3.13
>>> import math
>>> math.tan(math.pi / 4)
1.0