统计每个整数出现次数用python代码表示
时间: 2024-02-05 13:04:42 浏览: 161
好的,你可以使用 Python 中的字典数据结构来实现统计每个整数出现的次数。以下是一个示例代码:
```python
# 定义一个整数数组
nums = [1, 2, 3, 4, 5, 1, 2, 3, 1, 2, 1]
# 定义一个空字典,用于保存每个整数出现的次数
count_dict = {}
# 遍历整数数组,统计每个整数出现的次数
for num in nums:
if num in count_dict:
count_dict[num] += 1
else:
count_dict[num] = 1
# 打印每个整数出现的次数
for num, count in count_dict.items():
print("整数 " + str(num) + " 出现了 " + str(count) + " 次。")
```
这段代码会输出以下结果:
```
整数 1 出现了 4 次。
整数 2 出现了 3 次。
整数 3 出现了 2 次。
整数 4 出现了 1 次。
整数 5 出现了 1 次。
```
相关问题
在区间[1, 9]内生成2000个随机的整数,统计每个整数出现的次数。python
好的,我能回答你的问题。以下是用 Python 实现的代码:
```python
import random
# 生成2000个随机整数
nums = [random.randint(1, 9) for i in range(2000)]
# 统计每个整数出现的次数
counts = [0] * 9
for num in nums:
counts[num - 1] += 1
# 输出每个整数出现的次数
for i in range(9):
print("Number", i + 1, "appears", counts[i], "times")
```
这段代码首先生成2000个随机整数,然后用一个列表 `counts` 统计每个整数出现的次数。最后输出每个整数出现的次数。
生成包含1000个0到100之间的随机整数,并统计每个元素的出现次数。Python代码怎么写?
好的,我知道了。下面是 Python 代码实现该问题:
```python
import random
# 生成1000个0到100之间的随机整数
numbers = [random.randint(0, 100) for _ in range(1000)]
# 统计每个元素的出现次数
count = {}
for num in numbers:
if num in count:
count[num] += 1
else:
count[num] = 1
print(count)
```
这段代码中,我们使用 `random` 模块生成 1000 个随机整数,使用字典 `count` 统计每个元素出现的次数,最后输出字典 `count`。
阅读全文