Been trying to solve this for the past few hours and I cannot find a solution! Essentially we have to write a program that opens a file, takes the numbers from it, and calculates the aforementioned things (mean, min, max, standard derivation). Below is what I currently have:
def get_numbers():
# Open a file for reading.
infile = open('inNumbers.txt', 'r')
# Read the numbers from the file.
line = infile.readline()
while line != '':
print(line)
line = infile.readline()
infile.close()
def mean(nums):
sum = 0.0
for num in nums:
sum = sum + num
return sum / len(nums)
def stdDev(nums, xbar):
sumDevSq = 0.0
for num in nums:
dev = xbar - num
sumDevSq = sumDevSq + dev * dev
return sqrt(sumDevSq/(len(nums)-1))
def min():
showFile = open("inNumbers.txt", 'r')
lowest = None
for line in showFile:
tokens = line.split(',')
value = min(tokens[:2])
if lowest == None:
lowest = value
if value < lowest:
lowest = value
def main():
print("This program computes mean, maximum, minimum and standard deviation.")
data = get_numbers()
xbar = mean(data)
std = stdDev(data, xbar)
print("\nThe mean is", xbar)
print("The standard deviation is", std)
print("The minimum is", value)
main()
As I pointed out, you should first read some basic primers on programming before trying to solve your current problem, because otherwise any answer won't help you and will just create a new disciple of the cargo-cult.
Nevertheless, here goes your code (although I am not sure about the formula for the std-dev):
Maybe you can take something useful out of it.