how top add cahracters to empty string in pythion code example
Example: how to add char to string python
def addChar(text,char,place):
return text[:place] + char + text[place:]
def addChar(text,char,place):
return text[:place] + char + text[place:]