Die Suche ergab 1 Treffer

von zkingnukez
Mittwoch 5. Juli 2017, 09:18
Forum: Allgemeine Fragen
Thema: Python Class TypeError ( can only concatenate tuple (not "str") to tuple )
Antworten: 2
Zugriffe: 1140

Python Class TypeError ( can only concatenate tuple (not "str") to tuple )

Hallo,
unzwar habe ich folgendes Script verfasst und verstehe nicht wo der Fehler liegt.

class Konto:
def __init__(self,Kontostand,Kontoinhaber,Kontokorrent=0):
self.Kontostand = Kontostand
self.Kontoinhaber = Kontoinhaber
self.Kontokorrent = Kontokorrent

def Geld_einzahlen(Einzahlung,self ...