So fügen Sie char zu String Python hinzu


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