-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame_database.py
More file actions
130 lines (111 loc) · 2.38 KB
/
Copy pathgame_database.py
File metadata and controls
130 lines (111 loc) · 2.38 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
123
124
125
126
127
128
129
130
#Project:8-> Higher & Lower
data=[
{
'name':'Narendra Modi',
'follower_count': 76,
'description':'Prime Minister',
'country': 'India'
},
{
'name':'T-Series',
'follower_count': 240,
'description':'Music Company',
'country':'India'
},
{
'name':'Pankaj Tripathi',
'follower_count':5,
'description':'Bollywood Actor',
'country':'India'
},
{
'name':'Justin Bieher',
'follower_count':293,
'description':'Music Pop-Star',
'country':'Canada'
},
{
'name':'Cristiano Ronaldo',
'follower_count':595,
'description':'Football Player',
'country':'Portugal'
},
{
'name':'Lionel Messi',
'follower_count': 477,
'description':'Football Player',
'country': 'Argentina'
},
{
'name':'Virat Kohli',
'follower_count':255,
'description':'Cricketer Player',
'country':'India'
},
{
'name':'Jennifer Lopez',
'follower_count':248,
'description':'Actor & Musician',
'country':'USA'
},
{
'name':'Drake',
'follower_count':140,
'description':'Musician',
'country':'Canada'
},
{
'name':'Shakira',
'follower_count':159,
'description':'Musician',
'country':'Colombia'
},
{
'name':'Khaby Lame',
'follower_count':80,
'description':'Tiktoker/Gaming Video Creator',
'country':'USA'
},
{
'name':'Will Smith',
'follower_count':63,
'description':'Actor',
'country':'USA'
},
{
'name':'M S Dhoni',
'follower_count':45,
'description':'Cricketer',
'country':'India'
},
{
'name':'Dwayne Johnson',
'follower_count':379,
'description':'Actor & Wrestler',
'country':'USA'
},
{
'name':'Taylor Swift',
'follower_count':267,
'description':'Musician',
'country':'USA'
},
{
'name':'Neymar',
'follower_count':210,
'description':'Footballer',
'country':'USA'
},
{
'name':'NASA',
'follower_count':94,
'description':'Space Agency',
'country':'USA'
},
{
'name':'Snoop Dogg',
'follower_count':80,
'description':'Musician',
'country':'USA'
}
]