-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathcolors.py
34 lines (24 loc) · 935 Bytes
/
colors.py
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
# Loading all colors into memory at once
color_counts = {}
with open('all-favorite-colors.txt') as favorite_colors_file:
favorite_colors = favorite_colors_file.read().splitlines() # <1>
for color in favorite_colors:
if color in color_counts:
color_counts[color] += 1
else:
color_counts[color] = 1
# Loading a single color at a time into memory
color_counts = {}
with open('all-favorite-colors.txt') as favorite_colors_file:
for color in favorite_colors_file: # <1>
color = color.strip() # <2>
if color in color_counts:
color_counts[color] += 1
else:
color_counts[color] = 1
# Using a set to store only unique colors seen
all_colors = set()
with open('all-favorite-colors.txt') as favorite_colors_file:
for line in favorite_colors_file: # <1>
all_colors.add(line.strip()) # <2>
print('Amber Waves of Grain' in all_colors) # <3>