Python data structures: Assignment 8.5

Coursera:
Assignment 8.5
Week 4
8.5 Open the file mbox-short.txt and read it line by line. When you find a line that starts with 'From ' like the following line:
From stephen.marquard@uct.ac.za Sat Jan  5 09:14:16 2008
You will parse the From line using split() and print out the second word in the line (i.e. the entire address of the person who sent the message). Then print out a count at the end.
Hint: make sure not to include the lines that start with 'From:'.
You can download the sample data at http://www.py4e.com/code3/mbox-short.txt

Solution:-
fname =input("Enter file name: ")
fh = open(fname)
count = 0
for line in fh:
    line = line.rstrip()
    if not line.startswith('From '):
        continue
    words = line.split()
    print (words[1])
    count += 1
print ("There were", count, "lines in the file with From as the first word")

Comments

Popular posts from this blog

Python data structures: Assignment 7.1

Python data structure: Assignment 8.4

Programming for everybody (Python) Assignment 5.2

Coursera:Web application technologies and Django