python怎么用if判断二维数组某个元素是否为none值
时间: 2023-12-10 17:39:47 浏览: 243
DP-LeetCode152. 乘积最大子数组(Python)
可以使用以下代码:
```python
my_array = [[1, 2, None], [4, None, 6], [7, 8, 9]]
if my_array[1][1] is None:
print("The element is None")
else:
print("The element is not None")
```
这里我们假设需要判断二维数组中第2行第2列元素是否为`None`。使用`is`关键字比较对象的身份,而不是值。如果该元素为`None`,则会输出"The element is None",否则输出"The element is not None"。
阅读全文