forked from scharlton2/20221024USGS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pastable.py
55 lines (43 loc) · 1.61 KB
/
pastable.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
fruits = ["pomegranate", "cherry", "apricot", "apple",
"lemon", "kiwi", "orange", "lime", "watermelon", "guava",
"papaya", "fig", "pear", "banana", "tamarind", "persimmon",
"elderberry", "peach", "blueberry", "lychee", "grape", "date"]
fruits = ["pomegranate", "cherry", "apricot", "Apple",
"lemon", "Kiwi", "ORANGE", "lime", "Watermelon", "guava",
"Papaya", "FIG", "pear", "banana", "Tamarind", "Persimmon",
"elderberry", "peach", "BLUEberry", "lychee", "GRAPE", "date"]
nums = [800,80,1000,32,255,400,5,5000]
people = [
('Melinda', 'Gates', 'Gates Foundation', '1964-08-15'),
('Steve', 'Jobs', 'Apple', '1955-02-24'),
('Larry', 'Wall', 'Perl', '1954-09-27'),
('Paul', 'Allen', 'Microsoft', '1953-01-21'),
('Larry', 'Ellison', 'Oracle', '1944-08-17'),
('Grace', 'Hopper', 'COBOL', '1906-12-09'),
('Bill', 'Gates', 'Microsoft', '1955-10-28'),
('Mark', 'Zuckerberg', 'Facebook', '1984-05-14'),
('Sergey','Brin', 'Google', '1973-08-21'),
('Larry', 'Page', 'Google', '1973-03-26'),
('Linus', 'Torvalds', 'Linux', '1969-12-28'),
]
airports = {
'EWR': 'Newark',
'YYZ': 'Toronto',
'MCI': 'Kansas City',
'SFO': 'San Francisco',
'RDU': 'Raleigh-Durham',
'SJC': 'San Jose',
'MCO': 'Orlando',
'LTN': 'London', # (Luton)
'LGW': 'London', # (Gatwick)
'LHR': 'London', # (Heathrow)
'YCC': 'Calgary',
'ABQ': 'Albuquerque',
'OAK': 'Oakland',
'SMF': 'Sacramento',
'YOW': 'Ottawa',
'IAD': 'Dulles',
}
colors = ['red', 'green', 'purple', 'orange', 'brown',
'black', 'olive', 'navy', 'white', 'black',
'pink', 'chartreuse']