VOOZH about

URL: https://www.geeksforgeeks.org/python/python-cmath-inf-constant/

⇱ Python - cmath.inf Constant - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python - cmath.inf Constant

Last Updated : 28 May, 2020

cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.inf Constant is used to get the floating-point positive infinity.

Syntax: cmath.inf 

Returns: Return the value of positive infinity

Below examples illustrate the use of above function:

Example #1 : 

Output:

inf

Example 2:

Output:

-inf
Comment