def addChar(text,char,place): return text[:place] + char + text[place:]
line='hello' print('The line is',line+'world')