-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPython List Assignment 8.5.py
More file actions
24 lines (17 loc) · 1.07 KB
/
Python List Assignment 8.5.py
File metadata and controls
24 lines (17 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
""" Assignment 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:'. Also look at the last line of the sample output to see how to print the count.
You can download the sample data at http://www.py4e.com/code3/mbox-short.txt """
givenFile = input("Enter file name: ") # user input
givenFile = open(givenFile) # open file
count = 0 # counter
for line in givenFile : # iterate over the file
line = line.rstrip() # remove spaes
if not line.startswith('From '): continue
count += 1 # increment counter by one
words = line.split() # split line to small words
print(words[1]) # print the second word in the line
print("There were", count, "lines in the file with From as the first word")