Contact: aviboots(AT)netvision.net.il
39,923 questions
51,856 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++ '''