python-stuff/oop.py
2021-10-19 21:35:58 +02:00

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..")