-
Notifications
You must be signed in to change notification settings - Fork 241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question changed on Coursera #9
Comments
I am looking at 7.2 and it doesn't look like the current code uses a sum() function. You can try to change the variable name from sum to something else. |
hey,i did try that! |
Seems to work for me using the file you sent. Does this work?
|
fname = input("Please enter the name of the file: ") average = total / float(count) |
Hey,the new question of assignment 7.2(coding qs) demands us to do the same,but without using the sum() function.
This is the exact qs:
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 when you are testing below enter mbox-short.txt as the file name.
Please can you help me with this?I am unable to do so,hence i'm not able to proceed ahead
Thank you
The text was updated successfully, but these errors were encountered: