-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path142 prog.py
53 lines (44 loc) · 980 Bytes
/
142 prog.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
48
49
50
51
52
53
list1=[]
list2=[]
list3=[]
print("enter name1")
name1=input()
print("enter list1 of marks :")
for i in range(0,3):
a=int(input())
list1.append(a)
print("enter name2")
name2=input()
print("enter list2 of marks :")
for i in range(0,3):
b=int(input())
list2.append(b)
print("enter name3")
name3=input()
print("enter list3 of marks :")
for i in range(0,3):
c=int(input())
list3.append(c)
class student:
list4=[]
def __init__(self,n):
self.n=n
self.l=[]
def set(self,l):
self.l=l
def __add__(self,other):
f=student(self.n)
for i in range(0,3):
f.l.append(self.l[i]+other.l[i])
return f
def display(self):
print(self.n,self.l)
obj1=student(name1)
obj1.set(list1)
obj2=student(name2)
obj2.set(list2)
obj3=student(name3)
obj3.set(list3)
obj4=student(name1)
obj4=obj1+obj2+obj3
obj4.display()