Python - cmath.tan() function Last Updated : 01 Jun, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report cmath is Python built-in module that is used for complex number mathematics. cmath module has a method tan() that returns tangent of the complex number passed to it. Syntax: cmath.tan(Z) Parameter: It requires only one parameter i.e the number for which tangent needs to be calculated. Return: Returns a complex number that is the tangent of the number passed. Example 1: Python3 # Import the Library import cmath # Printing the result print (cmath.tan(5 + 3j)) Output: (-0.002708235836224072+1.0041647106948153j) Example 2: In this example real number is passed but the returned result is still a complex number. Python3 # Import the Library import cmath # Printing the result print (cmath.tan(1)) Output: (1.5574077246549023+0j) Example 3: In this example no argument is passed in this case TypeError will be thrown Python3 # Import the Library import cmath # Printing the result print (cmath.tan()) Output: TypeError: tan() takes exactly one argument (0 given) Comment More infoAdvertise with us Next Article Python - cmath.sin() function A aman neekhara Follow Improve Article Tags : Python Python Cmath-library Practice Tags : python Similar Reads Python - cmath.tanh() function cmath is Python built-in module that is used for complex number mathematics. cmath module has a method tanh() that returns hyperbolic tangent of the complex number passed to it. Syntax: cmath.tanh(Z) Parameter: It requires only one parameter i.e the number for which hyperbolic tangent needs to be ca 1 min read Python - cmath.sin() function cmath is Python built-in module that is used for complex number mathematics. cmath module has a method sin() that returns sine of the complex number passed to it. Syntax: cmath.sin(Z) Parameter: It requires only one parameter i.e the number for which sine needs to be calculated. Return: Returns a co 1 min read Python - cmath.sinh() function cmath is python built-in module that is used for complex number mathematics. cmath module has a method sinh() that returns hyperbolic sine of the complex number passed to it. Syntax: cmath.sinh(Z) Parameter: It requires only one parameter i.e the number for which hyperbolic sine needs to be calculat 1 min read Python - cmath.cos() function cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.cos() function returns the cosine value of a complex number. The value passed in this function can be int, float, and complex numbers. Syntax: cmath.cos(x) Parameter:This method accep 1 min read Python - cmath.atan() function cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.atan() function returns the arctangent value of a complex number. The value passed in this function can be int, float, and complex numbers. Syntax: cmath.atan(x) Parameter:This method 1 min read Python - cmath.asin() function cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.asin() function returns the arc sine value of a complex number. The value passed in this function can be int, float, and complex numbers. Syntax: cmath.asin(x) Parameter:This method a 1 min read Like