{"id":25440,"date":"2021-11-12T14:59:44","date_gmt":"2021-11-12T09:29:44","guid":{"rendered":"https:\/\/python-programs.com\/?p=25440"},"modified":"2021-11-14T15:02:27","modified_gmt":"2021-11-14T09:32:27","slug":"python-cmath-isnan-method-with-examples","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-cmath-isnan-method-with-examples\/","title":{"rendered":"Python cmath.isnan() Method with Examples"},"content":{"rendered":"

cmath.isnan() Method in Python:<\/strong><\/p>\n

The cmath.isnan() method determines whether a value is a nan (Not a Number).<\/p>\n

This method gives the following Boolean value: True if the value is nan, False otherwise.<\/p>\n

Syntax:<\/strong><\/p>\n

cmath.isnan(x)<\/pre>\n

Parameters<\/strong><\/p>\n

x:<\/strong> This is Required. The value used to test for NaN<\/p>\n

Return Value:<\/strong><\/p>\n

Returns a bool value that is True if any part of a complex number (real or imaginary) is NaN, otherwise False.<\/p>\n

Examples:<\/strong><\/p>\n

Example1:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given Complex Number = 3+4j<\/pre>\n

Output:<\/strong><\/p>\n

The result after applying isnan() method to the given complex number (3+4j)  = \r\nFalse<\/pre>\n

Example2:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given realpart = 5\r\nGiven imaginary part = 2<\/pre>\n

Output:<\/strong><\/p>\n

The result after applying isnan() method to the given complex number (5+2j) = \r\nFalse<\/pre>\n

Note:<\/strong> The above input format is for dynamic input.<\/p>\n

cmath.isnan() Method with Examples in Python<\/h2>\n