python判断数组某个元素是否为空
时间: 2023-07-08 22:17:34 浏览: 302
python简单判断序列是否为空的方法
5星 · 资源好评率100%
在Python中,可以使用以下方法来判断数组中某个元素是否为空:
1. 使用if语句和布尔运算符:
```
arr = [1, 2, None, 3, '', 'hello']
if arr[2] is None or arr[2] == '':
print("The element is empty")
else:
print("The element is not empty")
```
2. 使用Python内置函数bool():
```
arr = [1, 2, None, 3, '', 'hello']
if not bool(arr[2]):
print("The element is empty")
else:
print("The element is not empty")
```
注意,这里的空元素指的是None、 ''、 []、{}、()等空值。如果要判断元素是否为0或False,需要使用其他方法。
阅读全文