fairypp / Python_Learning

14 stars 8 forks source link

Python Data Structures_Coursera_Assignment 7.2 #2

Open fairypp opened 8 years ago

fairypp commented 8 years ago

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.pythonlearn.com/code/mbox-short.txt when you are testing below enter mbox-short.txt as the file name.

# Use the file name mbox-short.txt as the file name
fname = raw_input("Enter file name: ")
fh = open(fname)
total=0
count=0
for line in fh:
    if not line.startswith("X-DSPAM-Confidence:") : continue
    else:
        clpos=line.find(':')
        num=line[clpos+1:]
        total=total+float(num)
        count=count+1
total=total/count
print "Average spam confidence:", total