-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbabynames.py
More file actions
104 lines (78 loc) · 2.67 KB
/
Copy pathbabynames.py
File metadata and controls
104 lines (78 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#!/usr/bin/python
# Copyright 2010 Google Inc.
# Licensed under the Apache License, Version 2.0
# http://www.apache.org/licenses/LICENSE-2.0
# Google's Python Class
# http://code.google.com/edu/languages/google-python-class/
import sys
import re
"""Baby Names exercise
Define the extract_names() function below and change main()
to call it.
For writing regex, it's nice to include a copy of the target
text for inspiration.
Here's what the html looks like in the baby.html files:
...
<h3 align="center">Popularity in 1990</h3>
....
<tr align="right"><td>1</td><td>Michael</td><td>Jessica</td>
<tr align="right"><td>2</td><td>Christopher</td><td>Ashley</td>
<tr align="right"><td>3</td><td>Matthew</td><td>Brittany</td>
...
Suggested milestones for incremental development:
-Extract the year and print it
-Extract the names and rank numbers and just print them
-Get the names data into a dict and print it
-Build the [year, 'name rank', ... ] list and print it
-Fix main() to use the extract_names list
"""
def extract_names(filename):
"""
Given a file name for baby.html, returns a list starting with the year string
followed by the name-rank strings in alphabetical order.
['2006', 'Aaliyah 91', Aaron 57', 'Abagail 895', ' ...]
"""
myfile = open(filename, "r")
text = data=myfile.read()
myfile.close()
# Extract year
match = re.search(r'Popularity in (\d\d\d\d)', text)
name_list = [match.group(1)]
# Extract rank and boy and girl names
tuples = re.findall(r'<tr align="right"><td>(\d+)</td><td>(\w+)</td><td>(\w+)</td>', text)
# Build name dict
name_dict = {}
for tuple in tuples:
if tuple[1] not in name_dict:
name_dict[tuple[1]] = tuple[0]
if tuple[2] not in name_dict:
name_dict[tuple[2]] = tuple[0]
for key in sorted(name_dict.keys()):
name_list.append(key + " " + name_dict[key])
return name_list
def main():
# This command-line parsing code is provided.
# Make a list of command line arguments, omitting the [0] element
# which is the script itself.
args = sys.argv[1:]
if not args:
print 'usage: [--summaryfile] file [file ...]'
sys.exit(1)
# Notice the summary flag and remove it from args if it is present.
summary = False
if args[0] == '--summaryfile':
summary = True
del args[0]
# +++your code here+++
# For each filename, get the names, then either print the text output
# or write it to a summary file
for file in args:
name_list = extract_names(file)
if not summary:
print '\n'.join(name_list) + '\n'
else:
output = open(file + ".summary", "w")
output.write('\n'.join(name_list) + '\n')
output.close()
if __name__ == '__main__':
main()