12 lines
271 B
Python
12 lines
271 B
Python
|
|
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)
|