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