-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.py
114 lines (113 loc) · 2.82 KB
/
constants.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
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
105
106
107
108
109
110
111
112
113
114
TEAMS = [
'Panthers',
'Bandits',
'Warriors',
]
PLAYERS = [{
'name': 'Karl Saygan',
'guardians': 'Heather Bledsoe',
'experience': 'YES',
'height': '42 inches'
},
{
'name': 'Matt Gill',
'guardians': 'Charles Gill and Sylvia Gill',
'experience': 'NO',
'height': '40 inches'
},
{ 'name': 'Sammy Adams',
'guardians': 'Jeff Adams and Gary Adams',
'experience': 'NO',
'height': '45 inches'
},
{
'name': 'Chloe Alaska',
'guardians': 'David Alaska and Jamie Alaska',
'experience': 'NO',
'height': '47 inches'
},
{
'name': 'Bill Bon',
'guardians': 'Sara Bon and Jenny Bon',
'experience': 'YES',
'height': '43 inches'
},
{
'name': 'Joe Kavalier',
'guardians': 'Sam Kavalier and Elaine Kavalier',
'experience': 'NO',
'height': '39 inches'
},
{
'name': 'Phillip Helm',
'guardians': 'Thomas Helm and Eva Jones',
'experience': 'YES',
'height': '44 inches'
},
{
'name': 'Les Clay',
'guardians': 'Wynonna Brown',
'experience': 'YES',
'height': '42 inches'
},
{
'name': 'Sal Dali',
'guardians': 'Gala Dali',
'experience': 'NO',
'height': '41 inches'
},
{
'name': 'Suzane Greenberg',
'guardians': 'Henrietta Dumas',
'experience': 'YES',
'height': '44 inches'
},
{
'name': 'Jill Tanner',
'guardians': 'Mark Tanner',
'experience': 'YES',
'height': '36 inches'
},
{
'name': 'Arnold Willis',
'guardians': 'Claire Willis',
'experience': 'NO',
'height': '43 inches'
},
{
'name': 'Herschel Krustofski',
'guardians': 'Hyman Krustofski and Rachel Krustofski',
'experience': 'YES',
'height': '45 inches'
},
{
'name': 'Eva Gordon',
'guardians': 'Wendy Martin and Mike Gordon',
'experience': 'NO',
'height': '45 inches'
},
{
'name': 'Ben Finkelstein',
'guardians': 'Aaron Lanning and Jill Finkelstein',
'experience': 'NO',
'height': '44 inches'
},
{
'name': 'Joe Smith',
'guardians': 'Jim Smith and Jan Smith',
'experience': 'YES',
'height': '42 inches'
},
{
'name': 'Diego Soto',
'guardians': 'Robin Soto and Sarika Soto',
'experience': 'YES',
'height': '41 inches'
},
{
'name': 'Kimmy Stein',
'guardians': 'Bill Stein and Hillary Stein',
'experience': 'NO',
'height': '41 inches'
}
]