Python | numpy.isnat() method

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 import numpy as np # using numpy.isnat() method gfg = np.isnat(np.datetime64("Nat")) print(gfg) |
Output :
True
Example #2 :
# import numpy import numpy as np # using numpy.isnat() method gfg = np.isnat(np.datetime64("1998-01-01")) print(gfg) |
Output :
False



