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
+12
View File
@@ -0,0 +1,12 @@
from computer import Computer
from telefon import Telefon
meinpc = Computer("Dell")
print(meinpc.bezeichnung)
meinpc.bezeichnung = "Asus"
print(meinpc.bezeichnung)
meinpc.ausgabe_anzahl()
meintelefon = Telefon("Vodafone")
print(meintelefon.netz)
meintelefon.klingeln(5)