cómo agregar char a string python


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