gpt4 book ai didi

datetime - 检查 np.array 是否类似于日期时间的一致方法

转载 作者:行者123 更新时间:2023-12-03 07:02:01 24 4
gpt4 key购买 nike

我正在进行一些单元测试,我需要确保函数始终返回类似 np.datetime64 的对象。但是,它们可以是任何单位(年、日、纳秒等)。

我已经尝试过:

comp = function_returns_datetime_array(inp)

assert isinstance(comp.dtype, np.datetime64)
assert issubclass(comp.dtype, np.datetime64)
assert issubclass(type(comp.dtype), np.datetime64)

有什么建议吗?

最佳答案

您可以使用issubdtype :

np.issubdtype(comp.dtype, np.datetime64)

关于datetime - 检查 np.array 是否类似于日期时间的一致方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23063362/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com