Python | numpy.isnat() method (original) (raw)

Last Updated : 27 Sep, 2019

With the help of **numpy.isnat()** method, we can get the boolean value as true if date defined in a np.datetime64() method is not a time by using numpy.isnat() method.

Syntax : numpy.isnat()
Return : Return the boolean value if time is not found.

Example #1 :
In this example we can see that by using numpy.isnat() method, we are able to get the boolean value if time is not found in np.datetime64() method.

import numpy as np

gfg = np.isnat(np.datetime64( "Nat" ))

print (gfg)

Output :

True

Example #2 :

import numpy as np

gfg = np.isnat(np.datetime64( "1998-01-01" ))

print (gfg)

Output :

False

Similar Reads