-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhardcoded_data.py
More file actions
41 lines (38 loc) · 1.09 KB
/
Copy pathhardcoded_data.py
File metadata and controls
41 lines (38 loc) · 1.09 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
departments = ["Civil",
"Urban",
"Petroleum",
"Earthquake",
"Mechanical",
"Textile",
"IM",
"Automotive",
"Electrical",
"CIS",
"Electronic",
"Software",
"BCIT",
"Mathematics",
"Chemistry",
"Chemical",
"Materials",
"Metallurgical",
"Polymer",
"Food",
"Environmental",
"Economics", ]
domains = ['Promotions',
'HR',
'Logistics',
'Marketing',
'Graphics & Creativity',
'Documentation',
'Robotics & IT',
'Social Media',
'Event Management',
'Research & Development',
'Project Exhibition']
year = ['First Year', 'Second Year', 'Third Year',
'Forth Year']
departments_choices = [(k, k) for k in departments]
domains_choices = [(k, k) for k in domains]
year_choices = [(k, k) for k in year]