Python tan() is an inbuilt method defined under the math module, which is used to find the tan value of the parameter passed in radians. For example, if x is passed as a parameter in tan function (tan(x)), it returns the tan value of x in radians. We can use a math module by importing it. The syntax for it would be import math; after importing, we use to call the tan() function using the static object.

Python tan()

In Python, some of the most essential mathematical methods are defined in the math module. These include trigonometric functions, representation functions, logarithmic functions, angle conversion functions, etc. Python math.tan() function returns the tangent of the value passed as an argument.

Syntax

math.tan(var)

Here var is the variable of which tan we have to find.

#python

Python tan() Function | Math.tan() in Python Example
1.50 GEEK