我要查看一个列表中有哪些元素,各自的数目,请为我写一个Python示例代码
时间: 2024-02-06 20:11:43 浏览: 49
好的,以下是一个Python示例代码,可以实现你所需的功能:
```python
my_list = ['apple', 'banana', 'apple', 'orange', 'banana', 'grape', 'banana']
count_dict = {}
for item in my_list:
if item not in count_dict:
count_dict[item] = 1
else:
count_dict[item] += 1
for item, count in count_dict.items():
print(item, count)
```
输出结果为:
```
apple 2
banana 3
orange 1
grape 1
```
这段代码首先定义了一个包含多个元素的列表 `my_list`,然后使用一个字典 `count_dict` 记录每个元素出现的次数。接着使用 for 循环遍历字典中的每个元素,输出元素及其对应的出现次数。
阅读全文