Comment ajouter du char à String Python
def addChar(text,char,place):
return text[:place] + char + text[place:]
StupidGamedev
def addChar(text,char,place):
return text[:place] + char + text[place:]
def addChar(text,char,place):
return text[:place] + char + text[place:]