您的位置:

Python 程序:计算数组平均值

写一个 Python 程序来计算一个数组或 Numpy 元素数组的平均值。Python Numpy 模块有求和和求平均值的方法来求数组项的求和和求平均值。

import numpy as np

arr = np.array([10, 20, 40, 60, 80, 100])

total = arr.sum()
avg = np.average(arr)

print('\nThe Sum Of Array Elements     = ', total)
print('\nThe Average Of Array Elements = ', avg)

这个 python 程序使用 for 循环来迭代 Numpy Array 项,并计算所有元素的总和和平均值。

import numpy as np

arr = np.array([14, 25, 35, 67, 89, 11, 99])
total = 0

for i in range(len(arr)):
    total = total + arr[i]

avg = total / len(arr)

print('\nThe Sum Of Array Elements     = ', total)
print('\nThe Average Of Array Elements = ', avg)
The Sum Of Array Elements     =  340

The Average Of Array Elements =  48.57142857142857

使用 while 循环计算数组平均值的 Python 程序

import numpy as np

arr = np.random.randint(10, 150, size = 11)

print('The Random Array Genegrated')
print(arr)

total = 0
i = 0

while i < len(arr):
    total = total + arr[i]
    i = i + 1

avg = total / len(arr)

print('\nThe Sum Of Array Elements     = ', total)
print('\nThe Average Of Array Elements = ', avg)
The Random Array Genegrated
[123  91 119 131  45 121  48  53  44  60  82]

The Sum Of Array Elements     =  917

The Average Of Array Elements =  83.36363636363636

这个 Python 示例允许输入数组元素,并找到所有数组项的总和和平均值。

import numpy as np

arrlist = []
Number = int(input("Total Array Elements to enter = "))

for i in range(1, Number + 1):
    value = int(input("Please enter the %d Array Value = "  %i))
    arrlist.append(value)

arr = np.array(arrlist)

total = 0

for i in range(len(arr)):
    total = total + arr[i]

avg = total / len(arr)

print('\nThe Sum Of Array Elements     = ', total)
print('\nThe Average Of Array Elements = ', avg)
Total Array Elements to enter = 7
Please enter the 1 Array Value = 22
Please enter the 2 Array Value = 44
Please enter the 3 Array Value = 66
Please enter the 4 Array Value = 88
Please enter the 5 Array Value = 99
Please enter the 6 Array Value = 122
Please enter the 7 Array Value = 154

The Sum Of Array Elements     =  595

The Average Of Array Elements =  85.0
Python 程序:计算数组平均值

2022-07-24
Python 程序:计算两个数平均值

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

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

2022-07-24
用 Python 计算平均数

2023-05-10
Python程序求列表平均值

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

2023-05-10
使用Python计算数据的平均值

2023-05-10
Python函数:计算平均数

2023-05-12
利用Python tuple计算列表中数值的平均值

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

2023-12-08
Python平均值计算功能实现方法

2023-05-17
Python平均数

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

2023-12-08
Python平均数

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

2023-12-08
如何使用Python中的nanmean函数计算数组的平均值

2023-05-16
Python列表平均值分析

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

2022-07-24
Python 程序:计算五个科目的总平均值和百分比

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

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

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

2022-07-24