This commit is contained in:
2023-10-08 20:11:42 +08:00
parent 8c6b314546
commit 89fc1102f9
8 changed files with 89 additions and 28 deletions

View File

@@ -1,11 +0,0 @@
class Student:
def func1(self):
print("我是实例方法1111")
def fn(cls):
print("我是实例方法2222")
stu1 = Student()