Unterricht Mittwoch

This commit is contained in:
Max
2026-07-22 12:04:02 +02:00
parent 33a5c4df89
commit 6a29bc0f51
13 changed files with 915 additions and 43 deletions
+7
View File
@@ -0,0 +1,7 @@
from telefon import Telefon
from computer import Computer
# Vererbung (Python kann Mehrfachvererbung):
class Smartphone(Computer, Telefon):
def __init__(self, bezeichnung:str, netz:str, *args):
super().__init__(bezeichnung, netz, *args)