PR3_Studienleistung_1_Prof_.../SL_2/s2_a1.py

9 lines
106 B
Python
Raw Normal View History

2023-01-13 15:36:35 +01:00
class Parent:
2023-01-13 15:34:17 +01:00
pass
2023-01-13 15:36:35 +01:00
class Child(Parent):
2023-01-13 15:34:17 +01:00
pass
2023-01-13 15:36:35 +01:00
class Inbread(Parent,Child):
2023-01-13 15:34:17 +01:00
pass
2023-01-13 15:36:35 +01:00
i = Inbread()