class Student:
schoolname = "N.W.S.M.R.A" #this is a class attribute
def __init__(self,fullname,marks):
[Link] = fullname #this is a object attribute
[Link] = marks
print ("adding new student in database")
print(self)
#methos add
def welcome(self):
print ("welcome students",[Link])
s1 = Student("chiku Don" , 101 )
[Link]()