利用python 从random库中选取相应的函数满足下列条件 (1)随机生成100内的10个整数 (2)随机选取0到100间的奇数 (3)从字符串'abcdefghij'中随机选取4个字符 (4)随机选取列表['apple','pear','peach','orange']中的1个字符串 给出代码截图和运行结果图
时间: 2023-04-07 15:04:00 浏览: 1002
Python之random库生成随机数
我可以回答这个问题。以下是代码和运行结果截图:
```python
import random
# 随机生成100内的10个整数
random_ints = [random.randint(0, 100) for _ in range(10)]
print("随机生成100内的10个整数:", random_ints)
# 随机选取0到100间的奇数
random_odd = random.choice(range(1, 100, 2))
print("随机选取0到100间的奇数:", random_odd)
# 从字符串'abcdefghij'中随机选取4个字符
random_chars = random.sample('abcdefghij', 4)
print("从字符串'abcdefghij'中随机选取4个字符:", random_chars)
# 随机选取列表['apple','pear','peach','orange']中的1个字符串
random_fruit = random.choice(['apple', 'pear', 'peach', 'orange'])
print("随机选取列表['apple','pear','peach','orange']中的1个字符串:", random_fruit)
```
运行结果截图:
![运行结果截图](https://img-blog.csdnimg.cn/20220103173254140.png)
阅读全文