python self
class Student(object):
def __init__(self, name, score):
self.name = name
self.score = score
st=Student('lg',99)
print(st.name)
lg
微信扫一扫
class Student(object):
def __init__(self, name, score):
self.name = name
self.score = score
st=Student('lg',99)
print(st.name)
lg
相关推荐