Created
June 3, 2020 09:21
-
-
Save Okorojeremiah/165e0d579736dbb79dd474e77a53c1db to your computer and use it in GitHub Desktop.
#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…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fname = input("Enter a file name:") | |
fh = open(fname) | |
count = 0 | |
tot = 0 | |
for line in fh: | |
if not line.startswith("X-DSPAM-Confidence:"): | |
continue | |
fg = line.find("0") | |
ma = float(line[fg:]) | |
count = count + 1 | |
tot = tot + ma | |
print("Average spam confidence:" , tot/count) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment