Contact: aviboots(AT)netvision.net.il
41,163 questions
53,655 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 '''