Python - cmath.isinf() function Last Updated : 28 May, 2020 Comments Improve Suggest changes Like Article Like Report cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.isinf() function is used to check whether the value is positive or negative infinity, or not. The value passed in this function can be int, float, and complex numbers. Syntax: cmath.isinf(x) Parameter:This method accepts the following parameters. x :This parameter is the value to check for infinity. Returns:This method returns a Boolean value. Below examples illustrate the use of above function: Example #1 : Python3 # Python code to implement # the isinf()function # importing "cmath" # for mathematical operations import cmath # using cmath.isinf() method val = cmath.isinf(1 + 2j) print(val) Output: False Example 2: Python3 # Python code to implement # the isinf()function # importing "cmath" # for mathematical operations import cmath # using cmath.isinf() method val = cmath.isinf(complex(1 + float('inf'))) print(val) Output: True Comment More infoAdvertise with us Next Article Python - cmath.isinf() function S SHUBHAMSINGH10 Follow Improve Article Tags : Python Python math-library-functions Python Cmath-library Practice Tags : python Similar Reads Python - cmath.isnan() function cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.isnan() function is used to check whether the value is nan (Not a Number), or not. The value passed in this function can be int, float, and complex numbers. Syntax: cmath.isnan(x) Par 1 min read Python - cmath.isfinite() function cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.isfinite() function is used to check whether the value is finite, or not. The value passed in this function can be int, float, and complex numbers. Syntax: cmath.isfinite(x) Parameter 1 min read Python - cmath.isclose() function cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.isclose() function is used to check whether two complex values are close, or not. The value passed in this function can be int, float, and complex numbers. Syntax: cmath.isclose(a, b, 2 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.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