gpt4 book ai didi

python - 如何检查 numpy 数组是否为空?

转载 作者:IT老高 更新时间:2023-10-28 12:31:08 29 4
gpt4 key购买 nike

如何检查 numpy 数组是否为空?

我使用了以下代码,但如果数组包含零,则失败。

if not self.Definition.all():

这是解决方案吗?

if self.Definition == array([]):

最佳答案

您可以随时查看 .size 属性。是defined as an integer ,并且当数组中没有元素时为零(0):

import numpy as np
a = np.array([])

if a.size == 0:
# Do something when `a` is empty

关于python - 如何检查 numpy 数组是否为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11295609/

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