您的位置:

Python 程序:找到大于平均值的列表项

写一个 Python 程序来查找大于平均值的列表项。这个 python 示例允许我们输入列表项,然后我们会找到列表项的平均值。接下来,for 循环将迭代列表项,if 条件根据列表平均值检查每个项。最后,如果大于平均值,则打印该列表项。

listAvg = []
Number = int(input("Total Number of List Items = "))

for i in range(1, Number + 1):
    value = int(input("Enter the %d List Item = "  %i))
    listAvg.append(value)

total = sum(listAvg)
avg = total / Number

print('\nList Sum = {0} and Average = {1}'.format(total, avg))

print('Total List Items Greater than the List Average')
for i in range(len(listAvg)):
    if listAvg[i] > avg:
        print(listAvg[i], end = ' ')

这个 Python 示例使用 for 循环查找大于平均值的列表项。

listAvg = []
Number = int(input("Total Number of List Items = "))

total = 0
for i in range(Number):
    value = int(input("Enter the %d List Item = "  %(i+1)))
    listAvg.append(value)
    total = total + listAvg[i]

avg = total / Number

print('\nList Sum = {0} and Average = {1}'.format(total, avg))

print('Total List Items Greater than the List Average')
for i in range(len(listAvg)):
    if listAvg[i] > avg:
        print(listAvg[i], end = ' ')
Total Number of List Items = 7
Enter the 1 List Item = 22
Enter the 2 List Item = 9
Enter the 3 List Item = 11
Enter the 4 List Item = 18
Enter the 5 List Item = 29
Enter the 6 List Item = 139
Enter the 7 List Item = 44

List Sum = 272 and Average = 38.857142857142854
Total List Items Greater than the List Average
139 44 

Python 程序使用 while 循环查找大于平均值的列表项。

listAvg = []
Number = int(input("Total Number of List Items = "))

total = 0
i = 1
while(i <= Number):
    value = int(input("Enter the %d List Item = "  %(i+1)))
    listAvg.append(value)
    i = i + 1

i = 0
while(i < Number):
    total = total + listAvg[i]
    i = i + 1

avg = total / Number

print('\nList Sum = {0} and Average = {1}'.format(total, avg))

print('Total List Items Greater than the List Average')
for i in range(len(listAvg)):
    if listAvg[i] > avg:
        print(listAvg[i], end = ' ')
Total Number of List Items = 9
Enter the 2 List Item = 4
Enter the 3 List Item = 11
Enter the 4 List Item = 3
Enter the 5 List Item = 2
Enter the 6 List Item = 9
Enter the 7 List Item = 22
Enter the 8 List Item = 7
Enter the 9 List Item = 15
Enter the 10 List Item = 17

List Sum = 90 and Average = 10.0
Total List Items Greater than the List Average
11 22 15 17 
Python 程序:找到大于平均值的列表项

2022-07-24
Python 程序:计算列表项平均值

2022-07-24
Python程序求列表平均值

2023-05-10
Python 程序:寻找大于平均值的数组元素

2022-07-24
Python 程序:计算列表中数字平均值

2022-07-24
Python列表平均值分析

2023-05-10
Python 中列表的平均值

2022-07-24
Python 中列表的平均值

2022-07-24
Python列表求平均值

2023-05-10
Python列表平均值计算

2023-05-10
Python列表平均值求解

2023-05-10
python找出列表中的最小值,python求列表最小值

2022-11-20
Python 程序:计算数组平均值

2022-07-24
利用Python tuple计算列表中数值的平均值

一、Python tuple概述 Python tuple是一种不可变的数据类型,可以存储多个相关数据,例如数字、字符串、列表等。与列表不同,元组不能修改、删除或添加元素。因此,元组更适合于存储不需要

2023-12-08
Python程序实现查找序列中最大值功能

2023-05-12
Python 程序:寻找列表中最大数字

2022-07-24
Python平均数

Python是一门高级语言,拥有丰富的数学计算库和科学计算工具,并且被广泛应用于数据处理、科学计算和人工智能等领域。在Python中,平均数被广泛使用,本文将从多个方面对Python平均数进行详细的阐

2023-12-08
Python平均数

Python是一门高级语言,拥有丰富的数学计算库和科学计算工具,并且被广泛应用于数据处理、科学计算和人工智能等领域。在Python中,平均数被广泛使用,本文将从多个方面对Python平均数进行详细的阐

2023-12-08
使用Python计算数据的平均值

2023-05-10
Python 程序:计算 10 个数字并找出它们的总和和平均

2022-07-24