19 lines
416 B
Python
Executable File
19 lines
416 B
Python
Executable File
#!/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..") |