-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPROJ 18 - higher_lower_data.py
More file actions
122 lines (122 loc) · 2.77 KB
/
PROJ 18 - higher_lower_data.py
File metadata and controls
122 lines (122 loc) · 2.77 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
data = [
{
'name' : 'Instagram',
'followers' : 346,
'desc' : 'Social Media Platform',
'country' : 'United States'
},
{
'name' : 'TikTok',
'followers' : 451,
'desc' : 'Social Media Platform',
'country' : 'China'
},
{
'name' : 'Playstation',
'followers' : 511,
'desc' : 'Videogame Publisher',
'country' : 'The Void'
},
{
'name' : 'Cthulhu',
'followers' : 999,
'desc' : 'Eldritch Cosmic God',
'country' : 'Aethernum Vasilix'
},
{
'name' : 'John Wick',
'followers' : 124,
'desc' : 'Hitman who loves animals',
'country' : 'Jabbolistan'
},
{
'name' : 'Shrek',
'followers' : 897,
'desc' : 'Hot ogre man',
'country' : 'Far Far Away'
},
{
'name' : 'Earth',
'followers' : 2000,
'desc' : 'Planet',
'country' : 'Milky Way Galaxy'
},
{
'name' : 'Albert Einstein',
'followers' : 459,
'desc' : 'Scientist',
'country' : 'Libya'
},
{
'name' : 'Buzz Lightyear',
'followers' : 73,
'desc' : 'Toy',
'country' : 'some random toy stores'
},
{
'name' : 'Toyota',
'followers' : 872,
'desc' : 'Car manufacturing company',
'country' : 'Japan'
},
{
'name' : 'Anime',
'followers' : 1000,
'desc' : 'Japanese animated cartoon',
'country' : 'Japan Land'
},
{
'name' : 'Death',
'followers' : 5000,
'desc' : '????',
'country' : '????'
},
{
'name' : 'Kratos',
'followers' : 401,
'desc' : 'God of Hope',
'country' : 'Greece (now Wallmart)'
},
{
'name' : 'Scooby Doo',
'followers' : 132,
'desc' : 'Dog',
'country' : 'EARTH-165940A'
},
{
'name' : 'Jonkler',
'followers' : 82,
'desc' : 'Villain',
'country' : 'Gotham city'
},
{
'name' : 'Batman',
'followers' : 585,
'desc' : 'Hero',
'country' : 'Gotham city'
},
{
'name' : 'Peter Jerker',
'followers' : 328,
'desc' : 'Nerd',
'country' : 'New York city'
},
{
'name' : 'Lego 1x1',
'followers' : 618,
'desc' : 'Brick',
'country' : 'Lego City'
},
{
'name' : 'Adam',
'followers' : 1000,
'desc' : 'Man',
'country' : 'Eden'
},
{
'name' : 'Joe',
'followers' : 1,
'desc' : 'Runner',
'country' : 'Night City'
},
]