I need to create a "NaT" (the analog of float('NaN') but with time) in Python. Can this be done natively in Python or using the datetime library? How?
I know that numpy and pandas can do this (or something similar), but I feel that if I need to import a library for this it should be datetime, not numpy or pandas.