This commit is contained in:
2023-09-05 20:27:33 +08:00
parent 2ed1d96074
commit 8c6b314546
3 changed files with 34 additions and 1 deletions

11
cdTMP/test.py Normal file
View File

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