Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
def insertChar(s, char, index): return s[:index] + char + s[index:] s = "python" char = 'X' index = 3 s = insertChar(s, char, index) print(s) ''' run: pytXhon '''