![]() |
VOOZH | about |
Given a complex number, the task is to write a Python Program to return the real part of the complex argument.
Complex numbers are those numbers that are written in the format a+ib, where 'a' and 'b' are real numbers and 'i' is the imaginary part called "iota." (√-1) is the value of i.
In Python, Imaginary numbers can be created by using the complex() function, and the real part is returned using the .real attribute. In the article, we are using a NumPy array to create imaginary numbers and using the numpy.real() function to get the real component from it.
In this example, we can create a complex number using the complex() function. and return a real number with the help of the .real attribute.
Output:
Real part of the imaginary number is : 1.0
In this example, we can create a complex number using a NumPy array and return its dimensions, datatype, shape, and real number.
Output:
[1.+2.j 2.+3.j 4.+5.j] The dimension of the array is : 1 Datatype of our Array is : complex128 Shape of the array is : (3,) real part of the imaginary numbers in the array is : [1. 2. 4.]
Real part of the imaginary number is : 55