class Student(object): def __init__(self, name, score): self.name = name self.score = scorest=Student('lg',99)print(st.name)
lg
本文共 199 字,大约阅读时间需要 1 分钟。
class Student(object): def __init__(self, name, score): self.name = name self.score = scorest=Student('lg',99)print(st.name)
lg
转载于:https://www.cnblogs.com/luoganttcc/p/10525386.html