Open In App

Python | numpy.isnat() method

Improve
Improve
Like Article
Like
Save
Share
Report

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


Last Updated : 27 Sep, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads