-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercise 7.2.py
19 lines (18 loc) · 892 Bytes
/
exercise 7.2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Use the file name mbox-short.txt as the file name
#7.2 Write a program that prompts for a file name, then opens that file and reads through the file, looking for lines of the form:
#X-DSPAM-Confidence: 0.8475
#Count these lines and extract the floating point values from each of the lines and compute the average of those values and produce an output as shown below. Do not use the sum() function or a variable named sum in your solution.
#You can download the sample data at http://www.py4e.com/code3/mbox-short.txt
fname = input("Enter file name: ")
fh = open(fname)
count=0
total=0
for line in fh:
if not line.startswith("X-DSPAM-Confidence:") : continue
num=line.find("X-DSPAM-Confidence:")
numb=float(line[num+19:])
total=total+numb
count=count+1
print("Average spam confidence:",total/count)
#output
#Average spam confidence: 0.750718518519