mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
12 lines
154 B
Python
12 lines
154 B
Python
|
|
class Test1:
|
|
"""Test1 docstring"""
|
|
|
|
class Test2(Test1):
|
|
"""Test2 docstring"""
|
|
def print(self):
|
|
print("Test2")
|
|
|
|
a = Test2()
|
|
a.print()
|