19 lines
416 B
Python
19 lines
416 B
Python
![]() |
#!/bin/python
|
||
|
|
||
|
###########################################################
|
||
|
|
||
|
class Mensch():
|
||
|
|
||
|
def __init__(self, name):
|
||
|
self.name = name
|
||
|
|
||
|
def sprechen(self, text):
|
||
|
print(f"Ich bin {self.name} und ich sage: {text}")
|
||
|
|
||
|
###########################################################
|
||
|
|
||
|
domi = Mensch("Dominik")
|
||
|
domi.sprechen("Du netter Kerl!")
|
||
|
|
||
|
phil = Mensch("Philip")
|
||
|
phil.sprechen("Du tolles Weib..")
|