forked from khushbu14/webportal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubject_list.py
More file actions
74 lines (73 loc) · 1.49 KB
/
subject_list.py
File metadata and controls
74 lines (73 loc) · 1.49 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
s1 = {
'class' : 7,
'name' : 'science',
'contributor' : 'madhvishakya',
'topic' : 'Profit and loss',
'reviewer':'darshanahood',
'summary' :'aptitude related',
'language':"english"
}
s2 = {
'class' : '8',
'name' : 'science',
'contributor' : 'manojt.joy',
'topic' : 'minerals',
'summary' :'atoms',
'reviewer':'darshanahood',
'language':"hindi"
}
s3 = {
'class' : '9',
'name' : 'science',
'contributor' : 'salmamehajabeen.s',
'topic' : 'coal',
'summary' :'molecules',
'reviewer':'maheshporwa',
'language':"hindi"
}
s4 = {
'class' : '7',
'name' : 'science',
'contributor' : 'gopakumargopalakrishnan',
'topic' : 'pluto',
'summary' :'chemical reactions',
'reviewer':'darshanahood',
'language':"english"
}
s5 = {
'class' : '8',
'name' : 'science',
'contributor' : 'bhuvaneswaranrs',
'topic' : 'saturn',
'summary' :'physical reactions',
'reviewer':'maheshporwa',
'language':"english"
}
s6 = {
'class' : '9',
'name' : 'maths',
'contributor' : 'balasundarams.r',
'topic' : 'neptune',
'summary' :'neutralisation',
'reviewer':'vinayakjosh',
'language':"english"
}
s7 = {
'class' : '7',
'name' : 'maths',
'contributor' : 'girishbhole',
'topic' : 'moon',
'summary' :'radiation',
'reviewer':'vinayakjosh',
'language':"marathi"
}
s8 = {
'class' : '8',
'name' : 'maths',
'contributor' : 'girishbhole',
'topic' : 'sun',
'summary' :'solar system',
'reviewer':'darshanahood',
'language':"marathi"
}
subjects=[s1,s2,s3,s4,s5,s6,s7,s8]