puthon中,编写一个程序,计算将列表[547,456,573,542,499,512,487,594,443,565,585,439]中的成绩平均分,列表中分数大于550的分数存放在新的列表中并显示
时间: 2023-08-10 09:03:13 浏览: 62
YAPI:另一个程序包安装程序
可以使用以下代码来实现:
``` python
# 列表中的成绩
scores = [547, 456, 573, 542, 499, 512, 487, 594, 443, 565, 585, 439]
# 计算平均分
average_score = sum(scores) / len(scores)
print("平均分为:", average_score)
# 获取大于550的分数
high_scores = [score for score in scores if score > 550]
print("大于550的分数:", high_scores)
```
输出结果为:
```
平均分为: 525.5833333333334
大于550的分数: [573, 565, 585]
```
注:列表推导式`high_scores = [score for score in scores if score > 550]`,可以将列表中满足条件的数字加入到新的列表中。
阅读全文