编写程序,求列表s=[9,7,8,3,2,1,55,6]中的元素的个数、最大值、最小值、元素之和、平均值、对列表元素按降序排列。
时间: 2024-11-25 16:22:26 浏览: 11
cpp代码-编写1-100之间一共出现了多少个数字9
编写Python程序可以轻松完成这个任务:
```python
import statistics
# 定义列表 s
s = [9, 7, 8, 3, 2, 1, 55, 6]
# 1. 计算元素个数
element_count = len(s)
print(f"元素个数: {element_count}")
# 2. 找到最大值
max_value = max(s)
print(f"最大值: {max_value}")
# 3. 找到最小值
min_value = min(s)
print(f"最小值: {min_value}")
# 4. 求元素之和
sum_values = sum(s)
print(f"元素之和: {sum_values}")
# 5. 计算平均值
average = statistics.mean(s)
print(f"平均值: {average}")
# 6. 对列表元素按降序排列
sorted_s_desc = sorted(s, reverse=True)
print(f"元素按降序排列: {sorted_s_desc}")
```
运行以上代码,你会得到每个计算结果。
阅读全文