math.tan()
Anonymous contributors
Anonymous contributors
Anonymous contributors
Published Jun 22, 2021Updated Sep 3, 2021
Contribute to Docs
Returns the tangent of input numeric x, measured in radian value.
Syntax
math.tan(x)
Example 1
Use math.tan()
to return the tangent of the integer 5
measured in radian value:
import mathprint(math.tan(5))# Output: -3.380515006246586
Example 2
Use math.tan()
to return the tangent of the float 5.5
measured in radian value:
import mathprint(math.tan(5.5))# Output: -0.995584052213885
All contributors
- Anonymous contributorsAnonymous contributors
- Anonymous contributors
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.