-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame_data.py
More file actions
59 lines (56 loc) · 1.27 KB
/
Copy pathgame_data.py
File metadata and controls
59 lines (56 loc) · 1.27 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
data = [
{
'name':'instagram',
'follower_count':346,
'description':'social media platform',
'country':'united states'
},
{
'name':'Cristiano Ronaldo',
'follower_count':215,
'description':'Footballer',
'country':'Portugal'
},
{
'name':'Ariana Grande',
'follower_count':183,
'description':'Musician and actress',
'country':'united states'
},
{
'name':'Dwayne Johnson',
'follower_count':181,
'description':'Actor and Professional Werstler',
'country':'united states'
},
{
'name':'shree',
'follower_count':200,
'description':'Developer',
'country':'India'
},
{
'name':'Ganesh',
'follower_count':199,
'description':'IT engineer',
'country':'India'
},
{
'name':'Magnus Carlsen',
'follower_count':215,
'description':'Chess player',
'country':'united states'
},
{
'name':'Katrina kaif',
'follower_count':20,
'description':'Actress',
'country':'India'
},
{
'name':'Vicky Kushal',
'follower_count':15,
'description':'Actor',
'country':'India'
}
]