-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path7.py
48 lines (38 loc) · 1.2 KB
/
7.py
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
class student:
def __init__(self, name, rollno, subjectList):
self.name = name
self.rollno = rollno
self.subjectList = subjectList
def addSubject(self, subjectName):
self.subjectList.append(subjectName)
def removeSubject(self, subjectName):
if len(self.subjecList)!=0:
if subjectName in self.subjectList:
self.subjectList.remove(subjectName)
class division:
def __init__(self, name):
self.name = name
self.studentList = []
def addStudent(self, student):
self.studentList.append(student)
div1 = division('bca')
print(vars(div1))
stud1 = student('narendra', 10, ['network, python'])
print(vars(stud1))
div1.addStudent(stud1)
print(vars(div1))
stud2 = student('samadhan', 20, ['network, python', 'database'])
div1.addStudent(stud2)
print(vars(div1))
for student in div1.studentList:
print(vars(student))
print (vars(div1))
stud1 = student('narendra', 10, ['network, python'])
print (vars(stud1))
div1.addStudent(stud1)
print (vars(div1))
stud2 = student('samadhan', 20, ['network, python', 'database'])
div1.addStudent(stud2)
print (vars(div1))
for student in div1.studentList:
print (vars(student))