📜  pandas 是 nattype - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:22.430000             🧑  作者: Mango

代码示例1
In [29]: x = pandas.NaT

In [30]: y = numpy.datetime64('NaT')

In [31]: x != x
Out[31]: True

In [32]: y != y
/home/i850228/.local/lib/python3.6/site-packages/IPython/__main__.py:1: FutureWarning: In the future, NAT != NAT will be True rather than False.
  # encoding: utf-8
Out[32]: False