cara menambahkan char ke string python


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