VOOZH about

URL: https://www.geeksforgeeks.org/python/python-cmath-phase-function/

⇱ Python - cmath.phase() function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python - cmath.phase() function

Last Updated : 28 May, 2020

cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.phase() function is used to get the phase of a complex number. The value passed in this function can be int, float, and complex numbers.

Syntax: cmath.phase(x)

Parameter:This method accepts the following parameters.

  • x :This parameter is the number to find the phase of.

Returns:This method returns a float value that represent the phase of a complex number.

Below examples illustrate the use of above function:

Example #1 : 

Output:

0.0

Example 2:

Output:

1.3258176636680326
Comment