Contact: aviboots(AT)netvision.net.il
41,578 questions
54,200 answers
573 users
s = 'python java c++' index = s.find('java') s = s[:index] + 'c ' + s[index:] print(s) ''' run: python c java c++ '''