×

Python Tutorial

Python Basics

Python I/O

Python Operators

Python Conditions & Controls

Python Functions

Python Strings

Python Modules

Python Lists

Python OOPs

Python Arrays

Python Dictionary

Python Sets

Python Tuples

Python Exception Handling

Python NumPy

Python Pandas

Python File Handling

Python WebSocket

Python GUI Programming

Python Image Processing

Python Miscellaneous

Python Practice

Python Programs

math.tan() method with example in Python

Python math.tan() method: Here, we are going to learn about the math.tan() method with example in Python.
Submitted by IncludeHelp, on April 21, 2019

Python math.tan() method

math.tan() method is a library method of math module, it is used to get the tangent of the number radians, it accepts a number returns the tangent of the given number in radians.

Note: math.tan() method accepts the only number, if we provide anything else except the number, it returns error TypeError - "TypeError: a float is required".

Syntax of math.tan() method:

    math.tan(x)

Parameter(s): x – is the number whose tangent to be calculated.

Return value: float – it returns a float value that is the tangent value of the number x radians.

Example:

    Input:
    a = 0.278

    # function call
    print(math.tan(a))

    Output:
    0.2853901924877167

Python code to demonstrate example of math.tan() method

# python code to demonstrate example of 
# math.tan() method 

# importing math module
import math

# number
a = -1
print("tan(",a,") is = ", math.tan(a))

a = 0
print("tan(",a,") is = ", math.tan(a))

a = 0.278
print("tan(",a,") is = ", math.tan(a))

a = 1
print("tan(",a,") is = ", math.tan(a))

Output

tan( -1 ) is =  -1.5574077246549023
tan( 0 ) is =  0.0
tan( 0.278 ) is =  0.2853901924877167
tan( 1 ) is =  1.5574077246549023

TypeError example

# python code to demonstrate example of 
# math.tan() method with an exception

# importing math module
import math

# number
a = "2"
print("tan(",a,") is = ", math.tan(a))

Output

Traceback (most recent call last):
  File "/home/main.py", line 9, in <module>
    print("tan(",a,") is = ", math.tan(a))
TypeError: a float is required
Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.