In Python, a math module contains a number of math operations that can be easily accomplished using the module. math.tan()
returns the tangent of the value passed as an argument. The value passed to this function must be in radians.
Syntax: math.tan (x)
Parameter:
x: value to be passed to tan ()Returns: Returns the tangent of value passed as argument
Code # 1:
|
Code # 2:
|
Exit:
in_array: [0. 0.34906585 0.6981317 1.04719755 1.3962634 1.74532925
2.0943951 2.44346095 2.7925268 3.14159265]out_array: [0.0, 0.36397023426620234, 0.8390996311772799, 1.7320508075688767, 5.671281819617707, -5.671281819617711, -1.7320508075688783, -0.8390996311772804, -0.36397023426620256, -1.2246467991473532e- 16]