print("The pollution levels for the week are:")
def day_average(daylist):
lines_list = open('lab03/pollutiondaily.txt').read().splitlines()
#print(lines_list)
for line in lines_list:
if daylist in line:
line = daylist - 1
print(sum(line)/24)
This is what I got so far. How can sum the amount of each line in the list? The txt file looks like this (each line means each day):
32,42,32,51,43,64,58,50,46,78,41,32,41,32,29,39,65,37,31,59,52,23,27,63
91,93,44,31,55,42,38,54,46,48,61,45,42,42,129,139,45,47,51,49,43,49,27,23
67,54,83,45,56,98,92,121,153,115,98,80,59,63,84,121,144,119,103,97,83,75,56,64
132,142,154,151,143,164,158,150,146,78,141,32,141,142,112,113,116,123,123,119,152,123,127,163
89,78,67,65,56,98,123,144,179,86,82,90,172,124,156,187,122,154,144,165,87,152,93,157
76,92,154,61,147,154,68,154,66,88,91,132,41,32,129,49,65,88,61,159,182,123,127,53
64,29,54,43,54,27,54,76,61,39,44,61,54,112,110,91,94,97,92,76,88,65,61,60
source https://stackoverflow.com/questions/71460377/find-average-of-every-line-in-list-open-from-txt-file
Comments
Post a Comment