随机生成两个苹果分给哥哥和弟弟,如果哥哥的苹果重量大于弟弟,交换哥哥和弟弟的苹果python代码
时间: 2024-09-07 19:01:01 浏览: 45
苹果照片数据集和python处理代码-VOC2007.zip
5星 · 资源好评率100%
这是一个简单的Python代码示例,用于随机生成两个苹果并根据重量交换它们,如果哥哥的苹果比弟弟的重:
```python
import random
# 定义苹果重量的范围
min_weight = 50
max_weight = 150
# 随机生成两个苹果的重量
apple_weights = [random.randint(min_weight, max_weight), random.randint(min_weight, max_weight)]
# 初始化哥哥和弟弟的苹果
brother_apple = apple_weights[0]
younger_brother_apple = apple_weights[1]
# 检查哥哥的苹果是否更重
if brother_apple > younger_brother_apple:
# 如果哥哥的苹果更重,交换两人的苹果
younger_brother_apple, brother_apple = brother_apple, younger_brother_apple
print(f"哥哥的苹果重{brother_apple}克,弟弟的苹果重{younger_brother_apple}克.")
#
阅读全文