Files
wbs-python/python/klassen.py
T

12 lines
271 B
Python
Raw Normal View History

2026-07-21 12:01:43 +02:00
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)