python统计数字在某个区间内出现的次数
时间: 2023-03-29 16:00:54 浏览: 181
Python统计字符出现的次数
可以使用Python的统计模块collections中的Counter函数来实现。具体代码如下:
```python
from collections import Counter
# 定义一个列表
lst = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
# 统计数字在区间[3, 7]内出现的次数
cnt = Counter(x for x in lst if 3 <= x <= 7)
# 输出结果
print(cnt)
```
输出结果为:
```
Counter({3: 1, 4: 1, 5: 1, 6: 1, 7: 1})
```
即数字3、4、5、6、7在区间[3, 7]内分别出现了1次。
阅读全文