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