写一个代码,统计[4 2 3 4 3 4 1 2 3 4]和[4 4 2 4 3 4 1 1 2 4 ]两个数都相同都是4的个数
时间: 2024-05-10 14:14:36 浏览: 98
可以使用 Python 内置的 Counter 类来实现:
```python
from collections import Counter
list1 = [4, 2, 3, 4, 3, 4, 1, 2, 3, 4]
list2 = [4, 4, 2, 4, 3, 4, 1, 1, 2, 4]
counter1 = Counter(list1)
counter2 = Counter(list2)
count = counter1[4] + counter2[4] - abs(counter1[4] - counter2[4])
print(count)
```
输出结果为 7,即两个列表中都出现的数字 4 的个数。
阅读全文