forked from zedshaw/learn-python3-thw-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex39_test.py
57 lines (44 loc) · 1.52 KB
/
ex39_test.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import hashmap
# create a mapping of state to abbreviation
states = hashmap.new()
hashmap.set(states, 'Oregon', 'OR')
hashmap.set(states, 'Florida', 'FL')
hashmap.set(states, 'California', 'CA')
hashmap.set(states, 'New York', 'NY')
hashmap.set(states, 'Michigan', 'MI')
# create a basic set of states and some cities in them
cities = hashmap.new()
hashmap.set(cities, 'CA', 'San Francisco')
hashmap.set(cities, 'MI', 'Detroit')
hashmap.set(cities, 'FL', 'Jacksonville')
# add some more cities
hashmap.set(cities, 'NY', 'New York')
hashmap.set(cities, 'OR', 'Portland')
# print out some cities
print('-' * 10)
print(f"NY State has: {hashmap.get(cities, 'NY')}")
print(f"OR State has: {hashmap.get(cities, 'OR')}")
# print some states
print('-' * 10)
print(f"Michigan's abbreviation is: {hashmap.get(states, 'Michigan')}")
print(f"Florida's abbreviation is: {hashmap.get(states, 'Floridat')}")
# do it by using the state then cities dict
print('-' * 10)
test1 = hashmap.get(cities, hashmap.get(states, 'Michigan'))
print(f"Michigan has: {test1}")
test2 = hashmap.get(cities, hashmap.get(states, 'Florida'))
print(f"Florida has: {test2}")
# print every state abbreviation
print('-' * 10)
hashmap.list(states)
# print every city in state
print('-' * 10)
hashmap.list(cities)
print('-' * 10)
state = hashmap.get(states, 'Texas')
if not state:
print("Sorry, no Texas.")
# default values using ||= with the nil result
# can you do this on one line?
city = hashmap.get(cities, 'TX', 'Does Not Exist')
print(f"The city for the state 'TX' is: {city}")