Contact: aviboots(AT)netvision.net.il
41,397 questions
53,943 answers
573 users
s1 = "python" s2 = "c++" s1 += s2 print(s1) print(s2) ''' run: pythonc++ c++ '''
s1 = "python" s2 = "c++" s1 = "".join((s1, s2)) print(s1) print(s2) ''' run: pythonc++ c++ '''