​​python self​​



class Student(object):
def __init__(self, name, score):
self.name = name
self.score = score

st=Student('lg',99)

print(st.name)
lg