python-stuff/oop.py

19 lines
416 B
Python
Raw Normal View History

2021-10-19 21:35:58 +02:00
#!/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..")