Created
June 11, 2018 06:47
-
-
Save Mohamed2del/b20501e65b91340e991bc1be7197903f to your computer and use it in GitHub Desktop.
#File_Processing 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()…
This file contains 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 file name: ") | |
fh = open(fname) | |
count = 0 | |
plus = 0 | |
for line in fh: | |
if not line.startswith("X-DSPAM-Confidence:") : continue | |
startPos = line.find(':') | |
piece = line[startPos+1:] | |
end = float(piece) | |
plus = plus+end | |
count = count+1 | |
print("Average spam confidence:", plus/count) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
shouldnt it work for:
??