python数组中字符串个数
时间: 2024-01-23 16:41:39 浏览: 57
python将字符串转换成数组的方法
要计算Python数组中字符串的个数,可以使用以下代码:
```python
array = ["apple", 123, "banana", "orange", "pear", "grape", "kiwi"]
count = 0
for element in array:
if isinstance(element, str):
count += 1
print("The number of strings in the array is:", count)
```
这个代码中,我们遍历了数组中的每一个元素,使用`isinstance()`函数判断该元素是否为字符串,如果是字符串,则计数器加1。最后输出计数器的值即可。在这个例子中,输出的结果是4,因为数组中有4个字符串。
阅读全文