Unterricht Dienstag

This commit is contained in:
Max
2026-07-21 12:01:43 +02:00
parent 68ab58d4a5
commit fc527cf8f4
9 changed files with 1273 additions and 76 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)