12 lines
155 B
Python
12 lines
155 B
Python
class Student:
|
|
def func1(self):
|
|
print("我是实例方法1111")
|
|
|
|
def fn(cls):
|
|
print("我是实例方法2222")
|
|
|
|
|
|
|
|
|
|
stu1 = Student()
|