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
+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)