Как добавить char в String Python


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