Contact: aviboots(AT)netvision.net.il
39,970 questions
51,912 answers
573 users
s = 'python java c++' index = s.find('java') s = s[:index] + 'c ' + s[index:] print(s) ''' run: python c java c++ '''