python列表重复元素个数
时间: 2023-07-02 12:04:43 浏览: 79
你可以使用Python中的计数方法来计算列表中每个元素的重复次数,然后将其存储为字典。以下是一个示例代码:
```python
my_list = [1, 2, 2, 3, 3, 3, 4, 4, 4, 4]
count_dict = {}
for item in my_list:
if item in count_dict:
count_dict[item] += 1
else:
count_dict[item] = 1
print(count_dict)
```
这将输出一个字典,其中包含列表中每个元素的重复次数:
```
{1: 1, 2: 2, 3: 3, 4: 4}
```
你可以将此代码用于你自己的列表。
阅读全文