6. 将数组["a",23,"b",45,32,NaN,-50,true,""," ",9] 中数字类型的数组元素求和
时间: 2023-08-15 18:06:36 浏览: 97
并行计算求数组元素和
好的,我明白了。要将数组["a",23,"b",45,32,NaN,-50,true,""," ",9] 中的数字类型的数组元素求和,可以使用以下代码:
```python
arr = ["a",23,"b",45,32,NaN,-50,true,""," ",9]
total = 0
for element in arr:
if isinstance(element, (int, float)):
total += element
print(total)
```
请注意,NaN 是一种特殊的数值类型,代表不是一个数字(Not a Number)。在这个数组中,NaN 会被判断为数字类型,并被包含在求和的过程中。
阅读全文