Comment ajouter du char à String Python


def addChar(text,char,place):
  return text[:place] + char + text[place:]
StupidGamedev