写一个每次随机生成 10个 0(包括) 到 100 之间的随机正整数。
时间: 2023-06-08 10:07:43 浏览: 83
工作分享:随机正整数生成类
好的,以下是代码实现:
```python
import random
nums = []
for i in range(10):
nums.append(random.randint(0, 100))
print(nums)
```
以上代码每次运行都会生成 10 个 0 到 100 之间的随机正整数,并打印输出。
阅读全文