def ueberweisen(self, value, target): if (value < 0): print("Nicht autorisierte Anforderung!") return if (self.isAdult == 1): self.kontostand = self.kontostand - value * 1.015 else: self.kontostand = self.kontostand - value target.kontostand = target.konto + value