您的位置:首页 > 其它

Coursera Chaptereight:Lists Assignment 8.5

2016-04-18 14:40 2663 查看
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 athttp://www.pythonlearn.com/code/mbox-short.txt

fname = raw_input("Enter file name: ")

if len(fname) < 1 : fname = "mbox-short.txt"

fh = open(fname)

count = 0

for line in fh:

line=line.rstrip()

if not line.startswith('From '):continue

w=line.split()

print w[1]

count=count+1

print "There were", count, "lines in the file with From as the first word"
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: