my_list = ["hello", "python", "hello", "itcast", "hello"],怎么使用遍历得出hello的数量
时间: 2023-05-18 15:03:55 浏览: 107
list的4种遍历方式(实例讲解)
可以使用循环遍历列表中的元素,统计出现次数,代码如下:
```
count = 0
for item in my_list:
if item == "hello":
count += 1
print(count)
```
输出结果为:3
阅读全文